diff options
author | Ryo ONODERA <ryo_on@yk.rim.or.jp> | 2015-09-25 11:33:17 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-09-25 11:45:51 +0930 |
commit | 6cd8405efd699ed7686671d6f0d9caf20757b7a3 (patch) | |
tree | 1ecd677e24e9f721b4cf4cb660a8e6084f2d2e43 /gas/configure | |
parent | 9720e656055e5b906649c9f506a6de5a31337d07 (diff) | |
download | gdb-6cd8405efd699ed7686671d6f0d9caf20757b7a3.zip gdb-6cd8405efd699ed7686671d6f0d9caf20757b7a3.tar.gz gdb-6cd8405efd699ed7686671d6f0d9caf20757b7a3.tar.bz2 |
POSIX shell compatibility of gas/configure.ac
* configure.ac (nds32): Don't use bash == in tests.
* configure: Regenerate.
Diffstat (limited to 'gas/configure')
-rwxr-xr-x | gas/configure | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/configure b/gas/configure index 62bf039..a74604f 100755 --- a/gas/configure +++ b/gas/configure @@ -12333,7 +12333,7 @@ $as_echo "$with_arch" >&6; } # Decide features one by one. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default configuration of --enable-dx-regs" >&5 $as_echo_n "checking for default configuration of --enable-dx-regs... " >&6; } - if test "x${enable_dx_regs}" == xyes; then + if test "x${enable_dx_regs}" = xyes; then $as_echo "#define NDS32_DEFAULT_DX_REGS 1" >>confdefs.h @@ -12347,7 +12347,7 @@ $as_echo "$enable_dx_regs" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default configuration of --enable-perf-ext" >&5 $as_echo_n "checking for default configuration of --enable-perf-ext... " >&6; } - if test "x${enable_perf_ext}" == xno; then + if test "x${enable_perf_ext}" = xno; then $as_echo "#define NDS32_DEFAULT_PERF_EXT 0" >>confdefs.h @@ -12361,7 +12361,7 @@ $as_echo "$enable_perf_ext" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default configuration of --enable-perf-ext2" >&5 $as_echo_n "checking for default configuration of --enable-perf-ext2... " >&6; } - if test "x${enable_perf_ext2}" == xno; then + if test "x${enable_perf_ext2}" = xno; then $as_echo "#define NDS32_DEFAULT_PERF_EXT2 0" >>confdefs.h @@ -12375,7 +12375,7 @@ $as_echo "$enable_perf_ext2" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default configuration of --enable-string-ext" >&5 $as_echo_n "checking for default configuration of --enable-string-ext... " >&6; } - if test "x${enable_string_ext}" == xno; then + if test "x${enable_string_ext}" = xno; then $as_echo "#define NDS32_DEFAULT_STRING_EXT 0" >>confdefs.h @@ -12389,7 +12389,7 @@ $as_echo "$enable_string_ext" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default configuration of --enable-audio-ext" >&5 $as_echo_n "checking for default configuration of --enable-audio-ext... " >&6; } - if test "x${enable_audio_ext}" == xno; then + if test "x${enable_audio_ext}" = xno; then $as_echo "#define NDS32_DEFAULT_AUDIO_EXT 0" >>confdefs.h |