Skip to content

Commit

Permalink
Make ERROR a NOTICE, more notes (closes #88)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-woz committed Feb 12, 2016
1 parent 003d7e5 commit a8efae5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dev/m4/syslibs.m4
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@
# We take system libraries out of arguments to the linker
# to prevent system libraries from pre-empting custom user
# library locations.
# We do not currently have a solution for this on the Mac. (#88)
# Cf. https://code.google.com/p/exm-issues/issues/detail?id=546

AC_MSG_NOTICE([Generating system-libs.txt])

AC_PATH_PROG([LDCONFIG],[ldconfig],[no],["$PATH:/sbin"])
if [[ ${LDCONFIG} == no ]]
then
AC_MSG_ERROR([Could not find ldconfig.])
AC_MSG_NOTICE([\
Could not find ldconfig. \
The linker may use system directories. \
See /dev/m4/syslib.m4 for more information.])
fi

if [[ ${USE_MAC} == "no" ]]
Expand Down

0 comments on commit a8efae5

Please sign in to comment.