summaryrefslogtreecommitdiff
path: root/m4/uptime.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-26 21:39:16 +0000
committerJim Meyering <jim@meyering.net>2000-05-26 21:39:16 +0000
commit37cbfc8c6b1b9ba500ea317fce50d9659a27b973 (patch)
tree674318db05036d6d56d07e450c71bc23bdedaefc /m4/uptime.m4
parent40b91250bccc1d3669407849d1b02026b93e7d83 (diff)
downloadcoreutils-37cbfc8c6b1b9ba500ea317fce50d9659a27b973.tar.xz
Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
Diffstat (limited to 'm4/uptime.m4')
-rw-r--r--m4/uptime.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/uptime.m4 b/m4/uptime.m4
index 86570fa31..c6f637df8 100644
--- a/m4/uptime.m4
+++ b/m4/uptime.m4
@@ -1,4 +1,4 @@
-#serial 2
+#serial 3
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 $ac_cv_prog_cc_cross = 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