Re: [Mesa-dev] [PATCH mesa] meson: consolidate langs lists

2018-08-28 Thread Dylan Baker
Quoting Eric Engestrom (2018-08-28 09:18:09)
> Signed-off-by: Eric Engestrom 
> ---
>  src/util/xmlpool/meson.build | 12 +---
>  1 file changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/src/util/xmlpool/meson.build b/src/util/xmlpool/meson.build
> index 3d2de0cdc3a5fc45d1e4..8bdabcb825b776d06182 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,
>  )
> -- 
> Cheers,
>   Eric
> 

Reviewed-by: Dylan Baker 


signature.asc
Description: signature
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH mesa] meson: consolidate langs lists

2018-08-28 Thread Eric Engestrom
Signed-off-by: Eric Engestrom 
---
 src/util/xmlpool/meson.build | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/util/xmlpool/meson.build b/src/util/xmlpool/meson.build
index 3d2de0cdc3a5fc45d1e4..8bdabcb825b776d06182 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,
 )
-- 
Cheers,
  Eric

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev