diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-30 07:44:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-30 07:44:58 +0000 |
commit | d185a442b9ae2c06f5cc9ef9290f6afeebc97f18 (patch) | |
tree | 65cb77b3cd3a3d2c917bf725649d650c4081094d | |
parent | 86046cb32f2a87cf9c0a572a55b616bfc28b4b1d (diff) | |
download | coreutils-d185a442b9ae2c06f5cc9ef9290f6afeebc97f18.tar.xz |
s/ifval/m4_ifval/ to accommodate new autoconf.
-rw-r--r-- | m4/getloadavg.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/getloadavg.m4 b/m4/getloadavg.m4 index edcce0dd0..9116738e9 100644 --- a/m4/getloadavg.m4 +++ b/m4/getloadavg.m4 @@ -1,4 +1,4 @@ -#serial 7 +#serial 8 # A replacement for autoconf's macro by the same name. This version # accepts an optional argument specifying the name of the $srcdir-relative @@ -15,7 +15,7 @@ AC_DEFUN([AC_FUNC_GETLOADAVG], # By default, expect to find getloadavg.c in $srcdir/. ac_lib_dir_getloadavg=$srcdir # But if there's an argument, DIR, expect to find getloadavg.c in $srcdir/DIR. -ifval([$1], [ac_lib_dir_getloadavg=$srcdir/$1]) +m4_ifval([$1], [ac_lib_dir_getloadavg=$srcdir/$1]) # Make sure getloadavg.c is where it belongs, at ./configure-time. test -f $ac_lib_dir_getloadavg/getloadavg.c \ || AC_MSG_ERROR([getloadavg.c is not in $ac_lib_dir_getloadavg]) |