[commit: packages/process] master: Delete spurious comma in configure.ac (#8352) (7c97999)
git at git.haskell.org
git at git.haskell.org
Mon Sep 30 00:24:31 CEST 2013
Repository : ssh://git@git.haskell.org/process
On branch : master
Link : http://git.haskell.org/packages/process.git/commitdiff/7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b
>---------------------------------------------------------------
commit 7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b
Author: Peter Trommler <ptrommler at acm.org>
Date: Tue Sep 24 16:19:40 2013 +0200
Delete spurious comma in configure.ac (#8352)
A comma in AC_CHECK_FUNCS prevented setitimer from being detected.
Signed-off-by: Austin Seipp <austin at well-typed.com>
>---------------------------------------------------------------
7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index c0b2a14..5f0731d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@ AC_FUNC_FORK
# check for specific header (.h) files that we are interested in
AC_CHECK_HEADERS([signal.h sys/wait.h fcntl.h])
-AC_CHECK_FUNCS([setitimer, sysconf])
+AC_CHECK_FUNCS([setitimer sysconf])
FP_CHECK_CONSTS([SIG_DFL SIG_IGN])
More information about the ghc-commits
mailing list