From c87a6c2ec1eadf9d8fdedada92fa31b45e014915 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 30 Aug 2022 12:43:41 -0400 Subject: [PATCH] meson: remove useless command that isn't needed The tests/*.sh are executable in the source tree, and don't need to be chmodded after being copied to the build tree. --- tests/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 1f21e04..4a9d96f 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -19,5 +19,4 @@ tests = [ # yuck foreach test : tests configure_file(input: test + '.sh', output: test, copy: true) - run_command('chmod', '755', join_paths(meson.build_root(), 'tests', test)) endforeach