diff options
author | Jim Meyering <jim@meyering.net> | 2000-10-29 22:43:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-10-29 22:43:08 +0000 |
commit | 971d190dc4a50ec861628362e992a06be0bd771b (patch) | |
tree | d28f46b6d181fb0c2588ba598825119f96061c58 /m4 | |
parent | 05fc0219adcbf223c06ccf890565b766b45be509 (diff) | |
download | coreutils-971d190dc4a50ec861628362e992a06be0bd771b.tar.xz |
s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf renaming.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/fsusage.m4 | 4 | ||||
-rw-r--r-- | m4/ls-mntd-fs.m4 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/m4/fsusage.m4 b/m4/fsusage.m4 index 49ca817f3..67db3bc0c 100644 --- a/m4/fsusage.m4 +++ b/m4/fsusage.m4 @@ -1,4 +1,4 @@ -#serial 3 +#serial 4 # From fileutils/configure.in @@ -187,6 +187,6 @@ AC_TRY_CPP([#include <sys/filsys.h>], ac_fsusage_space=yes) fi -AC_SHELL_IFELSE([test $ac_fsusage_space = yes], [$1], [$2])dnl +AS_IFELSE([test $ac_fsusage_space = yes], [$1], [$2])dnl ]) diff --git a/m4/ls-mntd-fs.m4 b/m4/ls-mntd-fs.m4 index aa8ca2d5a..caaaecf98 100644 --- a/m4/ls-mntd-fs.m4 +++ b/m4/ls-mntd-fs.m4 @@ -1,4 +1,4 @@ -#serial 5 +#serial 6 dnl From Jim Meyering. dnl @@ -239,6 +239,6 @@ if test -z "$ac_list_mounted_fs"; then # Can't build mountlist.c or anything that needs its functions fi -AC_SHELL_IFELSE([test $ac_list_mounted_fs = found], [$1], [$2])dnl +AS_IFELSE([test $ac_list_mounted_fs = found], [$1], [$2])dnl ]) |