File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
import os
3
3
4
- # needed for code used from libardour
5
- I18N_PACKAGE = 'ardour'
6
-
7
4
def options (opt ):
8
5
pass
9
6
@@ -19,7 +16,7 @@ def build(bld):
19
16
obj .defines = [
20
17
'AU_SCANNER_APP' ,
21
18
'VERSIONSTRING="' + bld .env ['VERSION' ] + '"' ,
22
- 'PACKAGE="' + I18N_PACKAGE + bld .env ['MAJOR ' ] + '"' ,
19
+ 'PACKAGE="' + bld .env ['INTERNAL_NAME ' ] + '"' ,
23
20
'LIBARDOUR="' + bld .env ['INTERNAL_NAME' ] + '"' ,
24
21
'LOCALEDIR="' + os .path .join (os .path .normpath (bld .env ['DATADIR' ]), 'locale' ) + '"' ,
25
22
]
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ import os
3
3
import sys
4
4
import re
5
5
6
- # needed for code used from libardour
7
- I18N_PACKAGE = 'ardour'
8
-
9
6
def options (opt ):
10
7
pass
11
8
@@ -22,7 +19,7 @@ def build(bld):
22
19
obj .defines = [
23
20
'VST3_SCANNER_APP' ,
24
21
'VERSIONSTRING="' + bld .env ['VERSION' ] + '"' ,
25
- 'PACKAGE="' + I18N_PACKAGE + bld .env ['MAJOR ' ] + '"' ,
22
+ 'PACKAGE="' + bld .env ['INTERNAL_NAME ' ] + '"' ,
26
23
'LIBARDOUR="' + bld .env ['INTERNAL_NAME' ] + '"' ,
27
24
'LOCALEDIR="' + os .path .join (os .path .normpath (bld .env ['DATADIR' ]), 'locale' ) + '"' ,
28
25
]
@@ -64,7 +61,7 @@ def build(bld):
64
61
'_POSIX_SOURCE' ,
65
62
'USE_WS_PREFIX' ,
66
63
'VST_SCANNER_APP' ,
67
- 'PACKAGE="' + I18N_PACKAGE + bld .env ['MAJOR ' ] + '"' ,
64
+ 'PACKAGE="' + bld .env ['INTERNAL_NAME ' ] + '"' ,
68
65
'LIBARDOUR="' + bld .env ['INTERNAL_NAME' ] + '"' ,
69
66
'VERSIONSTRING="' + bld .env ['VERSION' ] + '"' ,
70
67
]
You can’t perform that action at this time.
0 commit comments