changeset 3139:5beb119bff66

(jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was a use of AS_IF.
author Jim Meyering <jim@meyering.net>
date Sat, 27 Jan 2001 14:06:04 +0000
parents 4dbeb65381db
children 13695a228da9
files m4/ls-mntd-fs.m4
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/m4/ls-mntd-fs.m4
+++ b/m4/ls-mntd-fs.m4
@@ -237,6 +237,11 @@
   # Can't build mountlist.c or anything that needs its functions
 fi
 
-AS_IF([test $ac_list_mounted_fs = found], [$1], [$2])[]dnl
+dnl FIXME: this should use AS_IF.
+if test $ac_list_mounted_fs = found; then
+$1
+else
+$2
+fi
 
   ])