* configure.in: Fix up "test $ac_cv_c_cross" to deal with
authorTom Yu <tlyu@mit.edu>
Tue, 24 Dec 1996 21:09:58 +0000 (21:09 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 24 Dec 1996 21:09:58 +0000 (21:09 +0000)
autoconf-2.12, since that variable can be set to a null string.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9687 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/configure.in

index a0f9faf19c71c0e46daa84c6971994dcd719524d..f5b5334214aa449d038033d69f8840162d8b1f51 100644 (file)
@@ -1,3 +1,8 @@
+Tue Dec 24 16:08:41 1996  Tom Yu  <tlyu@mit.edu>
+
+       * configure.in: Fix up "test $ac_cv_c_cross" to deal with
+       autoconf-2.12, since that variable can be set to a null string.
+
 Fri Dec  6 00:53:08 1996  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * v4rcp.c: Extend the platform-specific braindamage so that
index d8ca7c72f1e794d55d789d095f73ead098701ed0..ab2789aa395ba229dba50e56e4fef457b4f90c3a 100644 (file)
@@ -177,7 +177,7 @@ dnl
 AC_MSG_CHECKING([/etc/environment])
 AC_CACHE_VAL(krb5_cv_etc_environment,
 [AC_C_CROSS
-if test $ac_cv_c_cross = yes; then
+if test "$ac_cv_c_cross" = yes; then
 errprint(__file__:__line__: warning: Cannot check for file existence when cross compiling
 )dnl
 AC_MSG_ERROR(Cannot check for file existence when cross compiling)
@@ -197,7 +197,7 @@ dnl
 AC_MSG_CHECKING([/etc/TIMEZONE])
 AC_CACHE_VAL(krb5_cv_etc_timezone,
 [AC_C_CROSS
-if test $ac_cv_c_cross = yes; then
+if test "$ac_cv_c_cross" = yes; then
 errprint(__file__:__line__: warning: Cannot check for file existence when cross compiling
 )dnl
 AC_MSG_ERROR(Cannot check for file existence when cross compiling)