From: Simon Dawson Date: Mon, 11 Jun 2012 22:27:15 +0000 (+0000) Subject: monit: fix configuration error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5832382a18e285376e9a519e3fbfd6436e42a73;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/monit/monit.mk b/package/monit/monit.mk index 958618dc36..11bc7e16db 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