View Issue Details

IDProjectCategoryView StatusLast Update
0004430ardourbugspublic2020-04-19 20:15
Reporteracolomb Assigned Tocth103  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Summary0004430: [PATCH] Install system-wide default midi_maps
DescriptionThe 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.
TagsNo tags attached.

Activities

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

cth103

2011-11-02 12:56

administrator   ~0011876

Applied to SVN 10390. Thanks!

system

2020-04-19 20:15

developer   ~0022810

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.

Issue History

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