Fix bustage by working around shells that don't allow ! after &&. b=275674, 273336

This commit is contained in:
dbaron%dbaron.org 2004-12-23 00:23:29 +00:00
Родитель 6ad6ec022b
Коммит c5328b582e
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -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]