Bug 475064: Use 'test !', not '! test' in configure scripts. r=bsmedberg

This commit is contained in:
Jim Blandy 2009-01-28 09:01:40 -08:00
Родитель d17488dda2
Коммит 5151951c4e
4 изменённых файлов: 8 добавлений и 8 удалений

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

@ -64,7 +64,7 @@ AC_CACHE_CHECK([for a $2-byte type], moz_cv_n_byte_type_$1, [
],
[moz_cv_n_byte_type_$1=$type; break], [])
done
if ! test "$moz_cv_n_byte_type_$1"; then
if test ! "$moz_cv_n_byte_type_$1"; then
AC_MSG_ERROR([Couldn't find a $2-byte type])
fi
])
@ -95,7 +95,7 @@ AC_CACHE_CHECK([for the size of $2], moz_cv_size_of_$1, [
],
[moz_cv_size_of_$1=$size; break], [])
done
if ! test "$moz_cv_size_of_$1"; then
if test ! "$moz_cv_size_of_$1"; then
AC_MSG_ERROR([No size found for $2])
fi
])
@ -128,7 +128,7 @@ AC_CACHE_CHECK([for the alignment of $2], moz_cv_align_of_$1, [
],
[moz_cv_align_of_$1=$align; break], [])
done
if ! test "$moz_cv_align_of_$1"; then
if test ! "$moz_cv_align_of_$1"; then
AC_MSG_ERROR([No alignment found for $2])
fi
])

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

@ -6598,7 +6598,7 @@ MOZ_ARG_WITH_STRING(static-checking,
DEHYDRA_PATH= )
if test -n "$DEHYDRA_PATH"; then
if ! test -f "$DEHYDRA_PATH"; then
if test ! -f "$DEHYDRA_PATH"; then
AC_MSG_ERROR([The dehydra plugin is not at the specified path.])
fi
AC_DEFINE(NS_STATIC_CHECKING)

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

@ -64,7 +64,7 @@ AC_CACHE_CHECK([for a $2-byte type], moz_cv_n_byte_type_$1, [
],
[moz_cv_n_byte_type_$1=$type; break], [])
done
if ! test "$moz_cv_n_byte_type_$1"; then
if test ! "$moz_cv_n_byte_type_$1"; then
AC_MSG_ERROR([Couldn't find a $2-byte type])
fi
])
@ -95,7 +95,7 @@ AC_CACHE_CHECK([for the size of $2], moz_cv_size_of_$1, [
],
[moz_cv_size_of_$1=$size; break], [])
done
if ! test "$moz_cv_size_of_$1"; then
if test ! "$moz_cv_size_of_$1"; then
AC_MSG_ERROR([No size found for $2])
fi
])
@ -128,7 +128,7 @@ AC_CACHE_CHECK([for the alignment of $2], moz_cv_align_of_$1, [
],
[moz_cv_align_of_$1=$align; break], [])
done
if ! test "$moz_cv_align_of_$1"; then
if test ! "$moz_cv_align_of_$1"; then
AC_MSG_ERROR([No alignment found for $2])
fi
])

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

@ -4335,7 +4335,7 @@ MOZ_ARG_WITH_STRING(static-checking,
DEHYDRA_PATH= )
if test -n "$DEHYDRA_PATH"; then
if ! test -f "$DEHYDRA_PATH"; then
if test ! -f "$DEHYDRA_PATH"; then
AC_MSG_ERROR([The dehydra plugin is not at the specified path.])
fi
AC_DEFINE(NS_STATIC_CHECKING)