We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc392ad commit 003d7e5Copy full SHA for 003d7e5
dev/m4/syslibs.m4
@@ -1,5 +1,19 @@
1
+
2
+# SYSLIBS.M4
3
4
+# We take system libraries out of arguments to the linker
5
+# to prevent system libraries from pre-empting custom user
6
+# library locations.
7
+# Cf. https://code.google.com/p/exm-issues/issues/detail?id=546
8
9
AC_MSG_NOTICE([Generating system-libs.txt])
-# We take system libraries out of arguments to the linker (#546)
10
11
+AC_PATH_PROG([LDCONFIG],[ldconfig],[no],["$PATH:/sbin"])
12
+if [[ ${LDCONFIG} == no ]]
13
+then
14
+ AC_MSG_ERROR([Could not find ldconfig.])
15
+fi
16
17
if [[ ${USE_MAC} == "no" ]]
18
then
19
# This does not work on the Mac
0 commit comments