mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 06:17:14 +02:00
bug in the configure script will fill up the buildservers disk https://github.com/monitoring-plugins/monitoring-plugins/issues/1480
13 lines
309 B
Diff
13 lines
309 B
Diff
--- ./configure.ac.orig
|
|
+++ ./configure.ac
|
|
@@ -120,6 +120,9 @@
|
|
ACX_HELP_STRING([--with-perl=PATH],
|
|
[sets path to perl executable]),
|
|
with_perl=$withval,with_perl=$PERL)
|
|
+if test "$with_perl" = "yes"; then
|
|
+ with_perl="$PERL"
|
|
+fi
|
|
AC_SUBST(PERL, $with_perl)
|
|
|
|
dnl openssl/gnutls
|