Add -c (cache) to intltool flags to be forward compatible with waf
This commit is contained in:
parent
80f98430fc
commit
9f7d89c7a8
1 changed files with 1 additions and 1 deletions
2
wscript
2
wscript
|
@ -359,7 +359,7 @@ def build (bld):
|
||||||
obj = bld.new_task_gen ('intltool_in')
|
obj = bld.new_task_gen ('intltool_in')
|
||||||
obj.source = 'data/' + APPNAME + '.desktop.in'
|
obj.source = 'data/' + APPNAME + '.desktop.in'
|
||||||
obj.install_path = appdir
|
obj.install_path = appdir
|
||||||
obj.flags = '-d'
|
obj.flags = ['-d', '-c']
|
||||||
bld.install_files (appdir, 'data/' + APPNAME + '.desktop')
|
bld.install_files (appdir, 'data/' + APPNAME + '.desktop')
|
||||||
else:
|
else:
|
||||||
folder = os.path.abspath (blddir + '/default/data')
|
folder = os.path.abspath (blddir + '/default/data')
|
||||||
|
|
Loading…
Reference in a new issue