about summary refs log tree commit diff
path: root/sysdeps/i386/configure.ac
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-04-09 20:02:48 -0400
committerMike Frysinger <vapier@gentoo.org>2016-04-09 20:13:40 -0400
commit402fa33cf0815f04b2d621ce57418d71b432740a (patch)
tree836211e971dcf2560b6e5121b7a4401400b3eadf /sysdeps/i386/configure.ac
parent2f012b713af72215364cd233853335297729fb4e (diff)
downloadglibc-gentoo/2.22.tar.gz
glibc-gentoo/2.22.tar.xz
glibc-gentoo/2.22.zip
configure: fix `test ==` usage gentoo/2.22
POSIX defines the = operator, but not ==.  Fix the few places where we
incorrectly used ==.

(cherry picked from commit b2d4456b333970ab4cb01ed8045b9a8d2c4832f3)
(cherry picked from commit e2c17de539da301c96afa4181347c63eb94d99b1)
Diffstat (limited to 'sysdeps/i386/configure.ac')
-rw-r--r--sysdeps/i386/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/configure.ac b/sysdeps/i386/configure.ac
index a3f3067fb7..5647cb044d 100644
--- a/sysdeps/i386/configure.ac
+++ b/sysdeps/i386/configure.ac
@@ -99,7 +99,7 @@ else
   libc_cv_asm_mpx=no
 fi
 rm -f conftest*])
-if test $libc_cv_asm_mpx == yes; then
+if test $libc_cv_asm_mpx = yes; then
   AC_DEFINE(HAVE_MPX_SUPPORT)
 fi