diff options
author | Collin Funk <collin.funk1@gmail.com> | 2024-06-19 16:36:50 -0700 |
---|---|---|
committer | YunQiang Su <syq@gcc.gnu.org> | 2024-06-20 10:58:37 +0800 |
commit | bea447a2982f3094aa3423b5045cea929f4f4700 (patch) | |
tree | 2b33c6ee47612eefec676928e546db7ca3a3405d /configure | |
parent | ecbc96bb2873e453b0bd33d602ce34ad0d9d9cfd (diff) | |
download | gcc-bea447a2982f3094aa3423b5045cea929f4f4700.zip gcc-bea447a2982f3094aa3423b5045cea929f4f4700.tar.gz gcc-bea447a2982f3094aa3423b5045cea929f4f4700.tar.bz2 |
build: Fix missing variable quotes and typo
When dlopen and pthread_create are in libc the variable is
set to "none required", therefore running configure will show
the following errors:
./configure: line 8997: test: too many arguments
./configure: line 8999: test: too many arguments
./configure: line 9003: test: too many arguments
./configure: line 9005: test: =: unary operator expected
ChangeLog:
PR bootstrap/115453
* configure.ac: Quote variable result of AC_SEARCH_LIBS. Fix
typo ac_cv_search_pthread_crate.
* configure: Regenerate.
Signed-off-by: Collin Funk <collin.funk1@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8994,15 +8994,15 @@ if test "$ac_res" != no; then : fi -if test $ac_cv_search_dlopen = -ldl; then +if test "$ac_cv_search_dlopen" = -ldl; then CRAB1_LIBS="$CRAB1_LIBS -ldl" -elif test $ac_cv_search_dlopen = no; then +elif test "$ac_cv_search_dlopen" = no; then missing_rust_dynlibs="libdl" fi -if test $ac_cv_search_pthread_create = -lpthread; then +if test "$ac_cv_search_pthread_create" = -lpthread; then CRAB1_LIBS="$CRAB1_LIBS -lpthread" -elif test $ac_cv_search_pthread_crate = no; then +elif test "$ac_cv_search_pthread_create" = no; then missing_rust_dynlibs="$missing_rust_dynlibs, libpthread" fi |