зеркало из https://github.com/mozilla/gecko-dev.git
Bug 475064: Use 'test !', not '! test' in configure scripts. r=bsmedberg
This commit is contained in:
Родитель
d17488dda2
Коммит
5151951c4e
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче