diff options
author | Jakub Jelinek <jakub@redhat.com> | 2020-12-18 20:25:26 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-12-18 20:25:26 +0100 |
commit | 5dc998933e7aa737f4a45a8a2885d42d5288d51a (patch) | |
tree | e272bd4b54d0bea0364e93052308b0337a0976ba /libcc1/configure | |
parent | d44d47b49267b4265cee16d25b3f89dbf967cc0c (diff) | |
download | gcc-5dc998933e7aa737f4a45a8a2885d42d5288d51a.tar.gz |
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.
Diffstat (limited to 'libcc1/configure')
-rwxr-xr-x | libcc1/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcc1/configure b/libcc1/configure index d3eedfec9b8..ac0f0312cc9 100755 --- a/libcc1/configure +++ b/libcc1/configure @@ -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= |