diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-14 17:58:03 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-14 17:58:03 +0200 |
commit | 9e1700cbfeaaa751fb5a0d385d6ea18d69a5ac1c (patch) | |
tree | 6d4b3cce23b2d98598d79c5bac8e014ab0bebdb6 /modules/gnome.py | |
parent | 8ae740bb83da856da2a1fa1dd150eaec2dca62d2 (diff) | |
download | meson-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.py | 2 |
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')] |