Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
dhcp
Commits
e1fa07c1
Commit
e1fa07c1
authored
Sep 16, 2016
by
Francis Dupont
Browse files
transmit [A-Z]* configure arguments down
parent
e675b663
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure
View file @
e1fa07c1
...
...
@@ -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
=
...
...
configure.ac
View file @
e1fa07c1
...
...
@@ -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")
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment