projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f172a77
)
meson: Actually load translation files
author
Dylan Baker
<dylan@pnwbakers.com>
Fri, 24 Aug 2018 14:05:36 +0000
(07:05 -0700)
committer
Dylan Baker
<dylan@pnwbakers.com>
Tue, 28 Aug 2018 15:51:05 +0000
(08:51 -0700)
Currently we run the script but don't actually load any files, even in a
tarball where they exist.
Fixes: 3218056e0eb375eeda470058d06add1532acd6d4
("meson: Build i965 and dri stack")
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
src/util/xmlpool/meson.build
patch
|
blob
|
history
diff --git
a/src/util/xmlpool/meson.build
b/src/util/xmlpool/meson.build
index 346b1956a553871dcc8b9b8a7fd9832efd6432a2..3d2de0cdc3a5fc45d1e4fa15446692e4c31ea2f8 100644
(file)
--- a/
src/util/xmlpool/meson.build
+++ b/
src/util/xmlpool/meson.build
@@
-22,7
+22,10
@@
xmlpool_options_h = custom_target(
'xmlpool_options.h',
input : ['gen_xmlpool.py', 't_options.h'],
output : 'options.h',
- command : [prog_python, '@INPUT@', meson.current_source_dir()],
+ command : [
+ prog_python, '@INPUT@', meson.current_source_dir(),
+ 'ca', 'es', 'de', 'nl', 'sv', 'fr',
+ ],
capture : true,
depend_files : files('ca.po', 'es.po', 'de.po', 'nl.po', 'sv.po', 'fr.po'),
)