mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 10:40:12 +00:00
Convert == (bash-only) to = to fix configure tests for visibility bugs. b=353150 Patch from chpe@gnome.org. r=bsmedberg
This commit is contained in:
parent
26bdfdb9ee
commit
dc3244db0b
@ -2639,10 +2639,10 @@ __attribute__ ((visibility ("default"))) void TestFunc() {
|
||||
}
|
||||
EOF
|
||||
ac_cv_have_visibility_class_bug=no
|
||||
if ! ${CXX-g++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -S -o conftest.S conftest.c ; then
|
||||
if ! ${CXX-g++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
|
||||
ac_cv_have_visibility_class_bug=yes
|
||||
else
|
||||
if test `grep -c "@PLT" conftest.S` == 0; then
|
||||
if test `grep -c "@PLT" conftest.S` = 0; then
|
||||
ac_cv_have_visibility_class_bug=yes
|
||||
fi
|
||||
fi
|
||||
@ -2663,10 +2663,10 @@ __attribute__ ((visibility ("default"))) void Func() {
|
||||
}
|
||||
EOF
|
||||
ac_cv_have_visibility_builtin_bug=no
|
||||
if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c ; then
|
||||
if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
|
||||
ac_cv_have_visibility_builtin_bug=yes
|
||||
else
|
||||
if test `grep -c "@PLT" conftest.S` == 0; then
|
||||
if test `grep -c "@PLT" conftest.S` = 0; then
|
||||
ac_cv_visibility_builtin_bug=yes
|
||||
fi
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user