summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-10-02 19:03:58 +0200
committerXavi Artigas <xavierartigas@yahoo.es>2019-10-02 19:10:41 +0200
commit914135a6db9fd199c8cd69501fc7102a39a97921 (patch)
treed8ca737d442402743753059707950f0523bdbf8a /doc
parent9e113d0f2f105c7ff53d467e911d00fd5abd9ada (diff)
downloadefl-914135a6db9fd199c8cd69501fc7102a39a97921.tar.gz
meson: pass correct PACKAGE_DATA_DIR
Summary: PACKAGE_DATA_DIR was set to the build dir instead to the elementary specific data dir. ref T8304 Reviewers: segfaultxavi Reviewed By: segfaultxavi Subscribers: segfaultxavi, cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8304 Differential Revision: https://phab.enlightenment.org/D10275
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 068554f87b..5598b18ba3 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -133,7 +133,7 @@ foreach widget_preview : widget_previews
dependencies: elementary,
build_by_default: false,
c_args : [
- '-DPACKAGE_DATA_DIR="'+meson.current_build_dir()+'"',
+ '-DPACKAGE_DATA_DIR="'+join_paths(meson.source_root(), 'data', 'elementary')+'"',
'-DTESTS_BUILD_DIR="'+meson.current_build_dir()+'"',
'-DTESTS_SRC_DIR="'+meson.current_source_dir()+'"',
'-DDOCW_DIR="'+meson.current_build_dir()+'"']