2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

transmit [A-Z]* configure arguments down

This commit is contained in:
Francis Dupont
2016-09-16 23:39:34 +02:00
parent e675b66359
commit e1fa07c1bf
2 changed files with 16 additions and 0 deletions

8
configure vendored
View File

@@ -4475,6 +4475,14 @@ BINDCONFIG=
if test "$cross_compiling" = "yes"; then if test "$cross_compiling" = "yes"; then
BINDCONFIG="--host=$host" BINDCONFIG="--host=$host"
fi 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 if test "$cross_compiling" = "yes"; then
CROSS_COMPILING_TRUE= CROSS_COMPILING_TRUE=

View File

@@ -37,6 +37,14 @@ BINDCONFIG=
if test "$cross_compiling" = "yes"; then if test "$cross_compiling" = "yes"; then
BINDCONFIG="--host=$host" BINDCONFIG="--host=$host"
fi 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) AC_SUBST(BINDCONFIG)
AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = "yes") AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = "yes")