diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-01 09:04:56 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-01 09:04:56 +0000 |
commit | c52dea43b74f1109c1018b4704830f8a1ca8d96c (patch) | |
tree | 3d1b3efc0a93052f16469bc06965ca3053c40a11 | |
parent | 1e4dca2dd1dcbba1e0c845c29098dd818542f68e (diff) | |
download | coreutils-c52dea43b74f1109c1018b4704830f8a1ca8d96c.tar.xz |
Put double quotes around use of $cross_compiling.
-rw-r--r-- | m4/uptime.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
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 |