From: Jim Meyering Date: Sat, 1 Jul 2000 09:04:56 +0000 (+0000) Subject: Put double quotes around use of $cross_compiling. X-Git-Tag: cvs-readonly~6499 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=53754c9452df87143eaa40f07ca6d6ee19c1d8db;p=gnulib.git Put double quotes around use of $cross_compiling. --- diff --git a/m4/uptime.m4 b/m4/uptime.m4 index c6f637df8..74fef5e72 100644 --- 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_DEFUN(jm_SYS_PROC_UPTIME, 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