changeset 2634:3be5711148a2

Add missing AC_MSG_RESULT. Reported by Bruno Haible.
author Jim Meyering <jim@meyering.net>
date Fri, 23 Jun 2000 13:49:17 +0000
parents 2120169b6267
children 99f8bd0cab66
files m4/afs.m4
diffstat 1 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/m4/afs.m4
+++ b/m4/afs.m4
@@ -1,7 +1,12 @@
-#serial 2
+#serial 3
 
 AC_DEFUN(jm_AFS,
   AC_MSG_CHECKING(for AFS)
-  test -d /afs \
-    && AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.])
+  if test -d /afs; then
+    AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.])
+    ac_result=yes
+  else
+    ac_result=no
+  fi
+  AC_MSG_RESULT($ac_result)
 )