aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2017-08-06 11:51:06 +0200
committerNikolaus Rath <Nikolaus@rath.org>2017-08-06 11:51:06 +0200
commit586ad60414ba774a8fbd9dbc5609faa3821a7a4a (patch)
tree97acdedb656226bba76fd3cb5d040b7b94a03d88
parent0bb569557ee25af1e3b7204cf325b1cb1a3686cc (diff)
downloadsshfs-586ad60414ba774a8fbd9dbc5609faa3821a7a4a.tar
sshfs-586ad60414ba774a8fbd9dbc5609faa3821a7a4a.tar.gz
sshfs-586ad60414ba774a8fbd9dbc5609faa3821a7a4a.tar.bz2
sshfs-586ad60414ba774a8fbd9dbc5609faa3821a7a4a.zip
Drop -u option to cp
Not supported on OS X, and not strictly necessary. Fixes: #64.
-rw-r--r--test/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index 90eb94e..f84e86b 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', '-fPu', '--preserve=mode',
+ command: ['cp', '-fP', '--preserve=mode',
'@INPUT@', meson.current_build_dir() ])
# Provide something helpful when running 'ninja test'