From: Jim Meyering Date: Sat, 3 Feb 2001 16:45:25 +0000 (+0000) Subject: (jm_FILE_SYSTEM_USAGE): Restore prior use of X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b7db2c13b8051247df604bd96c3e9b58004f624;p=pspp (jm_FILE_SYSTEM_USAGE): Restore prior use of AS_IF, now that it works once again (mysteriously). --- diff --git a/m4/fsusage.m4 b/m4/fsusage.m4 index e5caa7f384..97f58d4ed5 100644 --- a/m4/fsusage.m4 +++ b/m4/fsusage.m4 @@ -1,4 +1,4 @@ -#serial 6 +#serial 7 # From fileutils/configure.in @@ -188,12 +188,6 @@ if test $ac_fsusage_space = no; then ac_fsusage_space=yes) fi -dnl FIXME: this should use AS_IF instead: -dnl AS_IF([test $ac_fsusage_space = found], [$1], [$2]) -if test $ac_fsusage_space = yes; then -$1 -else -$2 -fi +AS_IF([test $ac_fsusage_space = found], [$1], [$2]) ])