diff options
author | YunQiang Su <syq@gcc.gnu.org> | 2024-06-20 07:02:47 +0800 |
---|---|---|
committer | YunQiang Su <syq@gcc.gnu.org> | 2024-06-20 07:02:47 +0800 |
commit | 6d6587bc37f2039225e4fba9acaf7b26e600e3d3 (patch) | |
tree | 9fd7e483f188b5ec35b0740c097195ac72ec8d84 | |
parent | a334189739e13f8de1f9af99f8d16970435cebc4 (diff) | |
download | gcc-6d6587bc37f2039225e4fba9acaf7b26e600e3d3.zip gcc-6d6587bc37f2039225e4fba9acaf7b26e600e3d3.tar.gz gcc-6d6587bc37f2039225e4fba9acaf7b26e600e3d3.tar.bz2 |
Revert "build: Fix missing variable quotes"
This reverts commit c6a9ab8c920f297c4efd289182aef9fbc73f5906.
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | configure.ac | 8 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
4 files changed, 11 insertions, 11 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_crate = no; then missing_rust_dynlibs="$missing_rust_dynlibs, libpthread" fi @@ -19746,7 +19746,7 @@ config.status configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" -Copyright (C) Free Software Foundation, Inc. +Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." diff --git a/configure.ac b/configure.ac index 88576b3..5eda8dc 100644 --- a/configure.ac +++ b/configure.ac @@ -2045,15 +2045,15 @@ missing_rust_dynlibs=none AC_SEARCH_LIBS([dlopen], [dl]) AC_SEARCH_LIBS([pthread_create], [pthread]) -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_crate = no; then missing_rust_dynlibs="$missing_rust_dynlibs, libpthread" fi diff --git a/gcc/configure b/gcc/configure index b536af6..9dc0b65 100755 --- a/gcc/configure +++ b/gcc/configure @@ -30239,7 +30239,7 @@ else fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_mips_explicit_relocs_pcrel" >&5 $as_echo "$gcc_cv_as_mips_explicit_relocs_pcrel" >&6; } -if test "x$gcc_cv_as_mips_explicit_relocs_pcrel" = "xyes"; then +if test $gcc_cv_as_mips_explicit_relocs_pcrel = yes; then $as_echo "#define MIPS_EXPLICIT_RELOCS MIPS_EXPLICIT_RELOCS_PCREL" >>confdefs.h diff --git a/gcc/configure.ac b/gcc/configure.ac index 1501bf8..b2243e9 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -5317,7 +5317,7 @@ x: AC_MSG_CHECKING(assembler and linker for explicit JALR relocation) gcc_cv_as_ld_jalr_reloc=no - if test "x$gcc_cv_as_mips_explicit_relocs" = "xyes"; then + if test $gcc_cv_as_mips_explicit_relocs = yes; then if test $in_tree_ld = yes ; then if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 20 -o "$gcc_cv_gld_major_version" -gt 2 \ && test $in_tree_ld_is_elf = yes; then |