aboutsummaryrefslogtreecommitdiff
path: root/gas/configure.ac
diff options
context:
space:
mode:
authorRyo ONODERA <ryo_on@yk.rim.or.jp>2015-09-25 11:33:17 +0930
committerAlan Modra <amodra@gmail.com>2015-09-25 11:45:51 +0930
commit6cd8405efd699ed7686671d6f0d9caf20757b7a3 (patch)
tree1ecd677e24e9f721b4cf4cb660a8e6084f2d2e43 /gas/configure.ac
parent9720e656055e5b906649c9f506a6de5a31337d07 (diff)
downloadfsf-binutils-gdb-6cd8405efd699ed7686671d6f0d9caf20757b7a3.zip
fsf-binutils-gdb-6cd8405efd699ed7686671d6f0d9caf20757b7a3.tar.gz
fsf-binutils-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.ac')
-rw-r--r--gas/configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/configure.ac b/gas/configure.ac
index 4a98ca7..aa6bb1d 100644
--- a/gas/configure.ac
+++ b/gas/configure.ac
@@ -403,7 +403,7 @@ changequote([,])dnl
# Decide features one by one.
AC_MSG_CHECKING(for default configuration of --enable-dx-regs)
- if test "x${enable_dx_regs}" == xyes; then
+ if test "x${enable_dx_regs}" = xyes; then
AC_DEFINE(NDS32_DEFAULT_DX_REGS, 1,
[Define value for nds32_dx_regs])
else
@@ -413,7 +413,7 @@ changequote([,])dnl
AC_MSG_RESULT($enable_dx_regs)
AC_MSG_CHECKING(for default configuration of --enable-perf-ext)
- if test "x${enable_perf_ext}" == xno; then
+ if test "x${enable_perf_ext}" = xno; then
AC_DEFINE(NDS32_DEFAULT_PERF_EXT, 0,
[Define value for nds32_perf_ext])
else
@@ -423,7 +423,7 @@ changequote([,])dnl
AC_MSG_RESULT($enable_perf_ext)
AC_MSG_CHECKING(for default configuration of --enable-perf-ext2)
- if test "x${enable_perf_ext2}" == xno; then
+ if test "x${enable_perf_ext2}" = xno; then
AC_DEFINE(NDS32_DEFAULT_PERF_EXT2, 0,
[Define value for nds32_perf_ext2])
else
@@ -433,7 +433,7 @@ changequote([,])dnl
AC_MSG_RESULT($enable_perf_ext2)
AC_MSG_CHECKING(for default configuration of --enable-string-ext)
- if test "x${enable_string_ext}" == xno; then
+ if test "x${enable_string_ext}" = xno; then
AC_DEFINE(NDS32_DEFAULT_STRING_EXT, 0,
[Define value for nds32_string_ext])
else
@@ -443,7 +443,7 @@ changequote([,])dnl
AC_MSG_RESULT($enable_string_ext)
AC_MSG_CHECKING(for default configuration of --enable-audio-ext)
- if test "x${enable_audio_ext}" == xno; then
+ if test "x${enable_audio_ext}" = xno; then
AC_DEFINE(NDS32_DEFAULT_AUDIO_EXT, 0,
[Define value for nds32_audio_ext])
else