From c381802a92a92c7074f5fa30502aa5966e990725 Mon Sep 17 00:00:00 2001 From: Justin Wozniak Date: Wed, 20 Jan 2016 12:29:29 -0600 Subject: [PATCH] Make ERROR a NOTICE, more notes (closes #88) --- dev/m4/syslibs.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev/m4/syslibs.m4 b/dev/m4/syslibs.m4 index 430a06a50..552159112 100644 --- a/dev/m4/syslibs.m4 +++ b/dev/m4/syslibs.m4 @@ -4,6 +4,7 @@ # 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]) @@ -11,7 +12,10 @@ 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" ]]