changeset 2674:1fa6e943d261

Put double quotes around use of $cross_compiling.
author Jim Meyering <jim@meyering.net>
date Sat, 01 Jul 2000 09:04:56 +0000
parents 1b4aa96a4506
children 0551ac03d85c
files m4/uptime.m4
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/m4/uptime.m4
+++ b/m4/uptime.m4
@@ -1,4 +1,4 @@
-#serial 3
+#serial 4
 
 AC_PREREQ(2.13)
 
@@ -8,7 +8,7 @@
   AC_CACHE_CHECK([for /proc/uptime], jm_cv_have_proc_uptime,
   [jm_cv_have_proc_uptime=no
     test -f /proc/uptime \
-      && test $cross_compiling = no \
+      && test "$cross_compiling" = no \
       && cat < /proc/uptime >/dev/null 2>/dev/null \
       && jm_cv_have_proc_uptime=yes])
   if test $jm_cv_have_proc_uptime = yes; then