mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-11 03:40:06 +00:00
configure: fix test ==
usage
POSIX defines the = operator, but not ==. Fix the few places where we incorrectly used ==.
This commit is contained in:
parent
20003c4988
commit
b2d4456b33
@ -1,3 +1,10 @@
|
|||||||
|
2016-04-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* sysdeps/i386/configure.ac: Change == to = when calling test.
|
||||||
|
* sysdeps/x86_64/configure.ac: Likewise.
|
||||||
|
* sysdeps/i386/configure: Regenerated.
|
||||||
|
* sysdeps/x86_64/configure: Likewise.
|
||||||
|
|
||||||
2016-04-08 Mike Frysinger <vapier@gentoo.org>
|
2016-04-08 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
[BZ #16137]
|
[BZ #16137]
|
||||||
|
2
sysdeps/i386/configure
vendored
2
sysdeps/i386/configure
vendored
@ -72,7 +72,7 @@ rm -f conftest*
|
|||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_mpx" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_mpx" >&5
|
||||||
$as_echo "$libc_cv_asm_mpx" >&6; }
|
$as_echo "$libc_cv_asm_mpx" >&6; }
|
||||||
if test $libc_cv_asm_mpx == yes; then
|
if test $libc_cv_asm_mpx = yes; then
|
||||||
$as_echo "#define HAVE_MPX_SUPPORT 1" >>confdefs.h
|
$as_echo "#define HAVE_MPX_SUPPORT 1" >>confdefs.h
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
@ -41,7 +41,7 @@ else
|
|||||||
libc_cv_asm_mpx=no
|
libc_cv_asm_mpx=no
|
||||||
fi
|
fi
|
||||||
rm -f conftest*])
|
rm -f conftest*])
|
||||||
if test $libc_cv_asm_mpx == yes; then
|
if test $libc_cv_asm_mpx = yes; then
|
||||||
AC_DEFINE(HAVE_MPX_SUPPORT)
|
AC_DEFINE(HAVE_MPX_SUPPORT)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
4
sysdeps/x86_64/configure
vendored
4
sysdeps/x86_64/configure
vendored
@ -24,7 +24,7 @@ rm -f conftest*
|
|||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_avx512" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_avx512" >&5
|
||||||
$as_echo "$libc_cv_asm_avx512" >&6; }
|
$as_echo "$libc_cv_asm_avx512" >&6; }
|
||||||
if test $libc_cv_asm_avx512 == yes; then
|
if test $libc_cv_asm_avx512 = yes; then
|
||||||
$as_echo "#define HAVE_AVX512_ASM_SUPPORT 1" >>confdefs.h
|
$as_echo "#define HAVE_AVX512_ASM_SUPPORT 1" >>confdefs.h
|
||||||
|
|
||||||
fi
|
fi
|
||||||
@ -77,7 +77,7 @@ rm -f conftest*
|
|||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_mpx" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_mpx" >&5
|
||||||
$as_echo "$libc_cv_asm_mpx" >&6; }
|
$as_echo "$libc_cv_asm_mpx" >&6; }
|
||||||
if test $libc_cv_asm_mpx == yes; then
|
if test $libc_cv_asm_mpx = yes; then
|
||||||
$as_echo "#define HAVE_MPX_SUPPORT 1" >>confdefs.h
|
$as_echo "#define HAVE_MPX_SUPPORT 1" >>confdefs.h
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
@ -13,7 +13,7 @@ else
|
|||||||
libc_cv_asm_avx512=no
|
libc_cv_asm_avx512=no
|
||||||
fi
|
fi
|
||||||
rm -f conftest*])
|
rm -f conftest*])
|
||||||
if test $libc_cv_asm_avx512 == yes; then
|
if test $libc_cv_asm_avx512 = yes; then
|
||||||
AC_DEFINE(HAVE_AVX512_ASM_SUPPORT)
|
AC_DEFINE(HAVE_AVX512_ASM_SUPPORT)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ else
|
|||||||
libc_cv_asm_mpx=no
|
libc_cv_asm_mpx=no
|
||||||
fi
|
fi
|
||||||
rm -f conftest*])
|
rm -f conftest*])
|
||||||
if test $libc_cv_asm_mpx == yes; then
|
if test $libc_cv_asm_mpx = yes; then
|
||||||
AC_DEFINE(HAVE_MPX_SUPPORT)
|
AC_DEFINE(HAVE_MPX_SUPPORT)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user