aboutsummaryrefslogtreecommitdiff
path: root/modules/gnome.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-03-14 17:58:03 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-03-14 17:58:03 +0200
commit9e1700cbfeaaa751fb5a0d385d6ea18d69a5ac1c (patch)
tree6d4b3cce23b2d98598d79c5bac8e014ab0bebdb6 /modules/gnome.py
parent8ae740bb83da856da2a1fa1dd150eaec2dca62d2 (diff)
downloadmeson-9e1700cbfeaaa751fb5a0d385d6ea18d69a5ac1c.zip
meson-9e1700cbfeaaa751fb5a0d385d6ea18d69a5ac1c.tar.gz
meson-9e1700cbfeaaa751fb5a0d385d6ea18d69a5ac1c.tar.bz2
Moved different gnome feature tests in their own subdirectories.
Diffstat (limited to 'modules/gnome.py')
-rw-r--r--modules/gnome.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gnome.py b/modules/gnome.py
index a1c5025..f6d13a9 100644
--- a/modules/gnome.py
+++ b/modules/gnome.py
@@ -26,7 +26,7 @@ class GnomeModule:
def compile_resources(self, state, args, kwargs):
cmd = ['glib-compile-resources', '@INPUT@', '--generate']
if 'source_dir' in kwargs:
- d = os.path.join(state.build_to_src, kwargs.pop('source_dir'))
+ d = os.path.join(state.build_to_src, state.subdir, kwargs.pop('source_dir'))
cmd += ['--sourcedir', d]
if 'c_name' in kwargs:
cmd += ['--c-name', kwargs.pop('c_name')]