summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-06-03 08:46:29 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-06-03 08:46:29 -0400
commitbed3fa59047ebb946e92878b415cdb5ecb091e64 (patch)
treea378744fc348281fc26b600dc893490a6a0e6a3b
parentd83d89e882cfee31ba5ee5e9a8219e3b7e1c0efe (diff)
downloadefl-bed3fa59047ebb946e92878b415cdb5ecb091e64.tar.gz
meson: remove unneeded install: flags
Summary: when install is not set, meson take the value of install_dir. So when this is removed, things will continue working correctly. Reviewers: zmike, stefan_schmidt, cedric, segfaultxavi Reviewed By: zmike Subscribers: #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9065
-rw-r--r--meson.build1
-rw-r--r--src/lib/eina/meson.build1
-rw-r--r--src/lib/elementary/meson.build1
3 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 05eb78bcfe..04ed2a20f8 100644
--- a/meson.build
+++ b/meson.build
@@ -503,7 +503,6 @@ efl_config_h.set('EFL_API_LEGACY_DEF', '#define EFL_API_LEGACY_DEF "FIXME NOT IM
configure_file(
output: 'config.h',
- install: false,
configuration: config_h
)
diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build
index e4bce4fc96..1642d28b93 100644
--- a/src/lib/eina/meson.build
+++ b/src/lib/eina/meson.build
@@ -346,7 +346,6 @@ endif
eina_config_file = configure_file(
output: 'eina_config.h',
configuration: eina_config,
- install: true,
install_dir: dir_package_include)
public_headers += eina_config_file
diff --git a/src/lib/elementary/meson.build b/src/lib/elementary/meson.build
index 695817a242..b028831b66 100644
--- a/src/lib/elementary/meson.build
+++ b/src/lib/elementary/meson.build
@@ -996,7 +996,6 @@ endif
c = configure_file(
output: 'Elementary_Options.h',
- install : true,
install_dir : dir_package_include,
configuration: elm_options)