fix mistaken "do not roll" conclusion in TransportFSM::compute_should_roll()
[ardour.git] / patchfiles / wscript
1 #!/usr/bin/python
2
3 import os
4
5 top = '.'
6 out = 'build'
7
8 def configure(conf):
9     pass
10
11 def build(bld):
12     patchfiles = bld.path.ant_glob ('*.midnam')
13     bld.install_files (os.path.join(bld.env['DATADIR'], 'patchfiles'), patchfiles)
14
15 def options(opt):
16     pass