View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004430 | ardour | bugs | public | 2011-11-02 11:23 | 2020-04-19 20:15 |
| Reporter | acolomb | Assigned To | cth103 | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Summary | 0004430: [PATCH] Install system-wide default midi_maps | ||||
| Description | The midi_maps shipped with A3 are not installed by the waf script. Attached patch against r10389 fixes this so they are found by the Generic MIDI settings dialog. | ||||
| Tags | No tags attached. | ||||
|
2011-11-02 11:23
|
install_midi_maps.r10389.patch (743 bytes)
Index: wscript
===================================================================
--- wscript (revision 10389)
+++ wscript (working copy)
@@ -34,6 +34,7 @@
'gtk2_ardour',
'templates',
'export',
+ 'midi_maps'
]
i18n_children = [
Index: midi_maps/wscript
===================================================================
--- midi_maps/wscript (revision 0)
+++ midi_maps/wscript (revision 0)
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+
+import os
+
+top = '.'
+out = 'build'
+
+def configure(conf):
+ pass
+
+def build(bld):
+ maps = bld.path.ant_glob ('*.map')
+ bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'midi_maps'),
+ maps)
+
+def options(opt):
+ pass
|
|
|
Applied to SVN 10390. Thanks! |
|
|
Issue has been closed automatically, by Trigger Close Plugin. Feel free to re-open with additional information if you think the issue is not resolved. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2011-11-02 11:23 | acolomb | New Issue | |
| 2011-11-02 11:23 | acolomb | File Added: install_midi_maps.r10389.patch | |
| 2011-11-02 12:56 | cth103 | cost | => 0.00 |
| 2011-11-02 12:56 | cth103 | Note Added: 0011876 | |
| 2011-11-02 12:56 | cth103 | Status | new => resolved |
| 2011-11-02 12:56 | cth103 | Resolution | open => fixed |
| 2011-11-02 12:56 | cth103 | Assigned To | => cth103 |
| 2020-04-19 20:15 | system | Note Added: 0022810 | |
| 2020-04-19 20:15 | system | Status | resolved => closed |