summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2018-03-15 23:50:08 +0100
committerPeter Korsgaard <peter@korsgaard.com>2018-03-17 09:38:57 +0100
commitb582d137a121a456635d29735a27a0144a18b75e (patch)
tree49b1e62d1303ba6130b4f5f1cdd04313461c031b
parente5607fc4dd1f63da09bbe09e6cf51ce5c585fd7b (diff)
downloadbuildroot-b582d137a121a456635d29735a27a0144a18b75e.tar.gz
buildroot-b582d137a121a456635d29735a27a0144a18b75e.zip
package/enlightenment: fix meson warning
--disable-rpath was added by m4/lib-link.m4 with autotools based buildsystem. Now we use meson, we don't have such option anymore. The autotools eet-eet and eldbus_codegen options are named respectively eet and eldbus-codegen with meson. Fixes: WARNING: Unknown command line options: "eet-eet, eldbus_codegen, rpath" Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/enlightenment/enlightenment.mk7
1 files changed, 3 insertions, 4 deletions
diff --git a/package/enlightenment/enlightenment.mk b/package/enlightenment/enlightenment.mk
index 17309619ad..0d87119bb3 100644
--- a/package/enlightenment/enlightenment.mk
+++ b/package/enlightenment/enlightenment.mk
@@ -22,10 +22,9 @@ ENLIGHTENMENT_MESON_OPTS += \
--buildtype=$(if $(BR2_ENABLE_DEBUG),debug,release) \
--cross-file=$(HOST_DIR)/etc/meson/cross-compilation.conf \
-Dedje-cc=$(HOST_DIR)/bin/edje_cc \
- -Deet-eet=$(HOST_DIR)/bin/eet \
- -Deldbus_codegen=$(HOST_DIR)/bin/eldbus-codegen \
- -Dpam=false \
- -Drpath=false
+ -Deet=$(HOST_DIR)/bin/eet \
+ -Deldbus-codegen=$(HOST_DIR)/bin/eldbus-codegen \
+ -Dpam=false
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
ENLIGHTENMENT_MESON_OPTS += -Dsystemd=true
OpenPOWER on IntegriCloud