зеркало из https://github.com/mozilla/gecko-dev.git
Fix bustage by working around shells that don't allow ! after &&. b=275674, 273336
This commit is contained in:
Родитель
6ad6ec022b
Коммит
c5328b582e
|
@ -1955,8 +1955,10 @@ EOF
|
|||
EOF
|
||||
ac_cv_visibility_pragma=no
|
||||
if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
|
||||
if grep '\.hidden.*foo_hidden' conftest.s >/dev/null && ! grep '\.hidden.*foo_default' conftest.s > /dev/null ; then
|
||||
ac_cv_visibility_pragma=yes
|
||||
if grep '\.hidden.*foo_hidden' conftest.s >/dev/null; then
|
||||
if ! grep '\.hidden.*foo_default' conftest.s > /dev/null; then
|
||||
ac_cv_visibility_pragma=yes
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
rm -f conftest.[cs]
|
||||
|
|
Загрузка…
Ссылка в новой задаче