From: Francis Dupont Date: Fri, 16 Sep 2016 21:39:34 +0000 (+0200) Subject: transmit [A-Z]* configure arguments down X-Git-Tag: v4_4_0b1_f1~135^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1fa07c1bf9a7bd43d6e11a494860edfb2b6b6de;p=thirdparty%2Fdhcp.git transmit [A-Z]* configure arguments down --- diff --git a/configure b/configure index 4f4552f09..8f58b1f53 100755 --- a/configure +++ b/configure @@ -4475,6 +4475,14 @@ BINDCONFIG= if test "$cross_compiling" = "yes"; then BINDCONFIG="--host=$host" fi +eval "set my_configure_args $ac_configure_args" +shift +for a +do + case $a in + [A-Z]*) BINDCONFIG="$BINDCONFIG '$a'" ;; + esac +done if test "$cross_compiling" = "yes"; then CROSS_COMPILING_TRUE= diff --git a/configure.ac b/configure.ac index 8b58835c4..ca4608028 100644 --- a/configure.ac +++ b/configure.ac @@ -37,6 +37,14 @@ BINDCONFIG= if test "$cross_compiling" = "yes"; then BINDCONFIG="--host=$host" fi +eval "set my_configure_args $ac_configure_args" +shift +for a +do + case $a in + [[A-Z]]*) BINDCONFIG="$BINDCONFIG '$a'" ;; + esac +done AC_SUBST(BINDCONFIG) AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = "yes")