aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2017-10-25 19:30:34 +0100
committerNikolaus Rath <Nikolaus@rath.org>2017-10-25 19:30:34 +0100
commitfd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9 (patch)
treedefabfa520cea9630011e99c6905353e0746a488
parent2731a001e5bdce7409550e4c1ce78ff1dfb96a88 (diff)
downloadsshfs-fd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9.tar
sshfs-fd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9.tar.gz
sshfs-fd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9.tar.bz2
sshfs-fd3aa6594f1f99edbc3dffa5f8a933ca29f8dcd9.zip
meson.build: don't use cp -p instead of --preserve-mode
The latter is not supported on OS X.
-rw-r--r--test/meson.build2
1 files changed, 1 insertions, 1 deletions
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'