From fd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Wed, 25 Oct 2017 19:30:34 +0100 Subject: meson.build: don't use cp -p instead of --preserve-mode The latter is not supported on OS X. --- test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index f84e86b..3229a6c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -2,7 +2,7 @@ test_scripts = [ 'conftest.py', 'pytest.ini', 'test_sshfs.py', 'util.py' ] custom_target('test_scripts', input: test_scripts, output: test_scripts, build_by_default: true, - command: ['cp', '-fP', '--preserve=mode', + command: ['cp', '-fPp', '@INPUT@', meson.current_build_dir() ]) # Provide something helpful when running 'ninja test' -- cgit v1.2.3