changeset 2538:dbfa917adef5

Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
author Jim Meyering <jim@meyering.net>
date Fri, 26 May 2000 21:39:16 +0000
parents c971620b680c
children fe242503a464
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 2
+#serial 3
 
 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 $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