From 7c22f07cbd86b39e78990057687e5509fa299672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 14 May 2021 16:12:51 +0200 Subject: meson: revert the change to unquote commands in add_install_script Old meson fails with: Element not a string: [ ['/bin/sh']>>, '-c', 'test -n "$DESTDIR" || /bin/journalctl --update-catalog'] I'm doing it as a revert so that it's easy to undo the revert when we require newer meson. The effect is not so bad, maybe a dozen or so lines about finding 'sh'. --- catalog/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog') diff --git a/catalog/meson.build b/catalog/meson.build index d34e413d4f..7139c2e053 100644 --- a/catalog/meson.build +++ b/catalog/meson.build @@ -29,5 +29,5 @@ foreach file : in_files install_dir : catalogdir) endforeach -meson.add_install_script(sh, '-c', +meson.add_install_script('sh', '-c', 'test -n "$DESTDIR" || @0@/journalctl --update-catalog'.format(rootbindir)) -- cgit v1.2.1