summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-08-28 17:16:48 +0100
committerEric Engestrom <[email protected]>2018-09-06 15:22:24 +0100
commite67dadd3a9c4777b9c5189687aa95f9671117739 (patch)
tree6109a055836c8623cf5a2d7e439702d70d29f3c3 /src/util
parent07ff56791dd5e6ea0ab9f8146c63876e96b4e91e (diff)
meson: consolidate langs lists
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/xmlpool/meson.build12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/util/xmlpool/meson.build b/src/util/xmlpool/meson.build
index 3d2de0cdc3a..8bdabcb825b 100644
--- a/src/util/xmlpool/meson.build
+++ b/src/util/xmlpool/meson.build
@@ -18,14 +18,20 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
+_langs = ['ca', 'es', 'de', 'nl', 'sv', 'fr']
+
+_langs_po_files = []
+foreach lang : _langs
+ _langs_po_files += files(lang + '.po')
+endforeach
+
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(),
- 'ca', 'es', 'de', 'nl', 'sv', 'fr',
+ prog_python, '@INPUT@', meson.current_source_dir(), _langs,
],
capture : true,
- depend_files : files('ca.po', 'es.po', 'de.po', 'nl.po', 'sv.po', 'fr.po'),
+ depend_files : _langs_po_files,
)