diff options
author | Simon Dawson <spdawson@gmail.com> | 2012-06-11 22:27:15 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-06-16 21:54:10 +0200 |
commit | c5832382a18e285376e9a519e3fbfd6436e42a73 (patch) | |
tree | efe3786936f4b3a949f6842f9084874397e816de | |
parent | e85e2590e51e7492820776b7d14c2bbb26bbc335 (diff) | |
download | buildroot-novena-c5832382a18e285376e9a519e3fbfd6436e42a73.tar.gz buildroot-novena-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.mk | 2 |
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 |