summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-10-02 19:03:58 +0200
committerJongmin Lee <jm105.lee@samsung.com>2019-10-04 06:10:11 +0900
commit1646628aa58bd92b55a99491f521bfacf148e5b2 (patch)
treedc42caef8b4c18320247c1ec49aadd5a13802bee /doc
parent61c1b02efe71a22396901ec8b374ef5c049452d7 (diff)
downloadefl-1646628aa58bd92b55a99491f521bfacf148e5b2.tar.gz
efl-1646628aa58bd92b55a99491f521bfacf148e5b2.tar.bz2
efl-1646628aa58bd92b55a99491f521bfacf148e5b2.zip
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()+'"']