summaryrefslogtreecommitdiff
path: root/mcp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-04-28 21:11:08 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-04-28 21:11:08 -0400
commit058986f77b25685fe871bf5459da3f9c4ea03b5a (patch)
treede2dedd9c4c82072861a605604a37322d96fee23 /mcp
parentff25ebe7d96d73f28ec439ba294dd87f877baaf4 (diff)
finish unfinished work at basing all install paths on the program name
Diffstat (limited to 'mcp')
-rw-r--r--mcp/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcp/wscript b/mcp/wscript
index b1ff9c156b..e3cc341419 100644
--- a/mcp/wscript
+++ b/mcp/wscript
@@ -11,8 +11,8 @@ def configure(conf):
def build(bld):
devinfo = bld.path.ant_glob ('*.device')
profiles = bld.path.ant_glob ('*.profile')
- bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'mcp'), devinfo)
- bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'mcp'), profiles)
+ bld.install_files (os.path.join(bld.env['DATADIR'], 'mcp'), devinfo)
+ bld.install_files (os.path.join(bld.env['DATADIR'], 'mcp'), profiles)
def options(opt):
pass