From: Jim Meyering Date: Wed, 17 Jan 2001 10:34:16 +0000 (+0000) Subject: (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE, for autoconf-2.49c. X-Git-Tag: FILEUTILS-4_0_37~20 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=7f9c804f7a8e9e2c5ef43e4fe3db85ed86c80055;p=thirdparty%2Fcoreutils.git (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE, for autoconf-2.49c. --- diff --git a/m4/fsusage.m4 b/m4/fsusage.m4 index 67db3bc0c3..8a730bf100 100644 --- a/m4/fsusage.m4 +++ b/m4/fsusage.m4 @@ -1,4 +1,4 @@ -#serial 4 +#serial 5 # From fileutils/configure.in @@ -187,6 +187,6 @@ AC_TRY_CPP([#include ], ac_fsusage_space=yes) fi -AS_IFELSE([test $ac_fsusage_space = yes], [$1], [$2])dnl +AS_IF([test $ac_fsusage_space = yes], [$1], [$2])dnl ])