]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: remove workaround for old meson bug with command quoting
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Feb 2019 12:06:52 +0000 (13:06 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Feb 2019 12:10:08 +0000 (13:10 +0100)
Those bugs were fixed a long time ago. Let's take advantage of this and use the
usual $() syntax.

man/meson.build

index 05197d6ef42285766f08aace0f08e567e59bba0c..6956f39c7bc6f4d4455773436e86c507efba64a9 100644 (file)
@@ -198,12 +198,9 @@ if git.found()
         custom_target(
                 'update-man-rules',
                 output : 'update-man-rules',
-                # slightly strange syntax because of
-                # https://github.com/mesonbuild/meson/issues/1643
-                # and https://github.com/mesonbuild/meson/issues/1512
                 command : ['sh', '-c',
                            'cd @0@ && '.format(meson.build_root()) +
-                           'python3 @0@/tools/make-man-rules.py `git ls-files ":/man/*.xml"` >t && '.format(meson.source_root()) +
+                           'python3 @0@/tools/make-man-rules.py $(git ls-files ":/man/*.xml") >t && '.format(meson.source_root()) +
                            'mv t @0@/rules/meson.build'.format(meson.current_source_dir())],
                 depend_files : custom_entities_ent)
 endif