From c0a87b2e2dfa156bfb4e6c0e5d43f7a582f779fc Mon Sep 17 00:00:00 2001 From: David Levine Date: Sun, 31 Mar 2013 20:39:55 -0500 Subject: [PATCH 1/1] Look at post instead of inc to determine build options in build_nmh. --- docs/contrib/build_nmh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contrib/build_nmh b/docs/contrib/build_nmh index 22c4efb3..ef399f86 100755 --- a/docs/contrib/build_nmh +++ b/docs/contrib/build_nmh @@ -149,11 +149,11 @@ if install-mh -check >/dev/null 2>&1; then fi fi - if $ldd "$mhbin/inc" | grep sasl >/dev/null; then + if $ldd "`$mhbin/mhparam libdir`/post" | grep sasl >/dev/null; then config_sasl=y fi - if $ldd "$mhbin/inc" | grep ssl >/dev/null; then + if $ldd "`$mhbin/mhparam libdir`/post" | grep ssl >/dev/null; then config_tls=y fi fi -- 2.48.1