summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Dawson2012-06-12 00:27:15 +0200
committerPeter Korsgaard2012-06-16 21:54:10 +0200
commitc5832382a18e285376e9a519e3fbfd6436e42a73 (patch)
treeefe3786936f4b3a949f6842f9084874397e816de
parenttoolchain/gcc: bump 4.7.x (diff)
downloadbuildroot-c5832382a18e285376e9a519e3fbfd6436e42a73.tar.gz
buildroot-c5832382a18e285376e9a519e3fbfd6436e42a73.tar.xz
buildroot-c5832382a18e285376e9a519e3fbfd6436e42a73.zip
monit: fix configuration error
Configuration fails for the monit package, with the following error. checking for SSL library directory... Not found Couldn't find your SSL library files. Use --with-ssl-lib-dir option to fix this problem or disable the SSL support with --without-ssl Tweak the monit configuration command line so that openssl is found. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/monit/monit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/monit/monit.mk b/package/monit/monit.mk
index 958618dc3..11bc7e16d 100644
--- a/package/monit/monit.mk
+++ b/package/monit/monit.mk
@@ -15,7 +15,7 @@ MONIT_CONF_OPT += \
--without-pam
ifeq ($(BR2_PACKAGE_OPENSSL),y)
-MONIT_CONF_OPT += --with-ssl
+MONIT_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr
MONIT_DEPENDENCIES += openssl
else
MONIT_CONF_OPT += --without-ssl