diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-04-01 14:26:40 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-01 16:22:25 +0200 |
commit | 6087e548007b78ead9cb73bb4d642e3fb5236bd3 (patch) | |
tree | c69128e286d6ff7a89997d07d60b11526de90a6c | |
parent | 7cebb3fe0ff188b1e376cc73ebd07dc596596a02 (diff) | |
download | buildroot-6087e548007b78ead9cb73bb4d642e3fb5236bd3.tar.gz buildroot-6087e548007b78ead9cb73bb4d642e3fb5236bd3.zip |
package/apache: fix lua detection
Patch suggested by Thomas: Adding a path to --with-lua disables
pkgconf-based detection of lua, which in some cases needs libdl.
This patch removes --with-lua which fixes
http://autobuild.buildroot.net/results/cc1/cc13f4cef9cf6f18615d58f1d83b233812f19fa0/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/apache/apache.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/apache/apache.mk b/package/apache/apache.mk index 3b39be4a40..23414fe44d 100644 --- a/package/apache/apache.mk +++ b/package/apache/apache.mk @@ -57,9 +57,7 @@ APACHE_CONF_OPTS += \ endif ifeq ($(BR2_PACKAGE_LUA),y) -APACHE_CONF_OPTS += \ - --enable-lua \ - --with-lua=$(STAGING_DIR)/usr +APACHE_CONF_OPTS += --enable-lua APACHE_DEPENDENCIES += lua else APACHE_CONF_OPTS += --disable-lua |