mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 02:20:34 +08:00
libcc1: Fix up libcc1 configure [PR98330]
Either we should write test x$darwin_dynamic_lookup = xyes or we should make sure the variable is always defined to non-empty string. 2020-12-18 Jakub Jelinek <jakub@redhat.com> PR bootstrap/98380 * configure.ac: Set darwin_dynamic_lookup=no instead to empty string. * configure: Regenerated.
This commit is contained in:
parent
d44d47b492
commit
5dc998933e
2
libcc1/configure
vendored
2
libcc1/configure
vendored
@ -14976,7 +14976,7 @@ LIBS="$LIBS $libcc1_cv_lib_sockets"
|
||||
|
||||
case "$host" in
|
||||
*-*-darwin*) darwin_dynamic_lookup=yes ;;
|
||||
*) darwin_dynamic_lookup= ;;
|
||||
*) darwin_dynamic_lookup=no ;;
|
||||
esac
|
||||
if test $darwin_dynamic_lookup = yes; then
|
||||
DARWIN_DYNAMIC_LOOKUP_TRUE=
|
||||
|
@ -106,7 +106,7 @@ LIBS="$LIBS $libcc1_cv_lib_sockets"
|
||||
|
||||
case "$host" in
|
||||
*-*-darwin*) darwin_dynamic_lookup=yes ;;
|
||||
*) darwin_dynamic_lookup= ;;
|
||||
*) darwin_dynamic_lookup=no ;;
|
||||
esac
|
||||
AM_CONDITIONAL(DARWIN_DYNAMIC_LOOKUP, test $darwin_dynamic_lookup = yes)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user