summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-02-23 15:26:48 +0100
committerRobin Gareus <robin@gareus.org>2020-02-23 16:21:55 +0100
commit54c4d3adc5f0cea54457df04af44397825fc2679 (patch)
treef73f78a3090dac4eeba87eb04657279997a70da3 /wscript
parent96ef1dc0ed9862bf4937d182f789edd20c17581f (diff)
Clean up top-level source tree
Collect architecture independent data in 'share' subfolder. This also matches the install path
Diffstat (limited to 'wscript')
-rw-r--r--wscript14
1 files changed, 7 insertions, 7 deletions
diff --git a/wscript b/wscript
index 62590e5c1c..f499461caa 100644
--- a/wscript
+++ b/wscript
@@ -262,12 +262,12 @@ children = [
'libs/plugins/a-reverb.lv2',
'libs/plugins/a-fluidsynth.lv2',
'gtk2_ardour',
- 'export',
- 'midi_maps',
- 'mcp',
- 'osc',
- 'patchfiles',
- 'plugin_metadata',
+ 'share/export',
+ 'share/midi_maps',
+ 'share/mcp',
+ 'share/osc',
+ 'share/patchfiles',
+ 'share/plugin_metadata',
'scripts',
'headless',
'session_utils',
@@ -1451,7 +1451,7 @@ def build(bld):
bld.install_files (bld.env['CONFDIR'], 'system_config')
- bld.install_files (os.path.join (bld.env['DATADIR'], 'templates'), bld.path.ant_glob ('templates/**'), cwd=bld.path.find_dir ('templates'), relative_trick=True)
+ bld.install_files (os.path.join (bld.env['DATADIR'], 'templates'), bld.path.ant_glob ('share/templates/**'), cwd=bld.path.find_dir ('share/templates'), relative_trick=True)
if bld.env['RUN_TESTS']:
bld.add_post_fun(test)