Mercurial > hg > octave-kai > gnulib-hg
changeset 3151:e5e0a47cba56
(jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
AS_IF, now that it works once again (mysteriously).
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Sat, 03 Feb 2001 16:44:52 +0000 |
parents | 8c5790ac1fa8 |
children | e27b8c7ec668 |
files | m4/ls-mntd-fs.m4 |
diffstat | 1 files changed, 2 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/m4/ls-mntd-fs.m4 +++ b/m4/ls-mntd-fs.m4 @@ -1,4 +1,4 @@ -#serial 8 +#serial 9 dnl From Jim Meyering. dnl @@ -237,12 +237,6 @@ # Can't build mountlist.c or anything that needs its functions fi -dnl FIXME: this should use AS_IF instead: -dnl AS_IF([test $ac_list_mounted_fs = found], [$1], [$2]) -if test $ac_list_mounted_fs = found; then -$1 -else -$2 -fi +AS_IF([test $ac_list_mounted_fs = found], [$1], [$2]) ])