summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-29 19:05:19 +0100
committerIan Lynagh <igloo@earth.li>2011-04-29 19:05:19 +0100
commitd1bffa693adfa48ef65240bb3c097f5f5f77868e (patch)
tree0e1991340935ed54776fbc2b1f90038515a089a7 /aclocal.m4
parentee8b17c77e81620680f1bc0850517999a829f717 (diff)
downloadhaskell-d1bffa693adfa48ef65240bb3c097f5f5f77868e.tar.gz
Use "true" rather than ":" for RANLIB, where we don't have ranlib
We can pass "true" to Cabal, but not ":" as it's just a shell built-in
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 357c2e33fd..7433873279 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -635,7 +635,7 @@ AC_SUBST([ArArgs], ["$fp_prog_ar_args"])
# FP_PROG_AR_NEEDS_RANLIB
# -----------------------
# Sets the output variable RANLIB to "ranlib" if it is needed and found,
-# to ":" otherwise.
+# to "true" otherwise.
AC_DEFUN([FP_PROG_AR_NEEDS_RANLIB],
[AC_REQUIRE([FP_PROG_AR_IS_GNU])
AC_REQUIRE([FP_PROG_AR_ARGS])
@@ -655,7 +655,7 @@ fi])
if test $fp_cv_prog_ar_needs_ranlib = yes; then
AC_PROG_RANLIB
else
- RANLIB=":"
+ RANLIB="true"
AC_SUBST([RANLIB])
fi
])# FP_PROG_AR_NEEDS_RANLIB