Skip to content

Commit fd3aa65

Browse files
committed
meson.build: don't use cp -p instead of --preserve-mode
The latter is not supported on OS X.
1 parent 2731a00 commit fd3aa65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ test_scripts = [ 'conftest.py', 'pytest.ini', 'test_sshfs.py',
22
'util.py' ]
33
custom_target('test_scripts', input: test_scripts,
44
output: test_scripts, build_by_default: true,
5-
command: ['cp', '-fP', '--preserve=mode',
5+
command: ['cp', '-fPp',
66
'@INPUT@', meson.current_build_dir() ])
77

88
# Provide something helpful when running 'ninja test'

0 commit comments

Comments
 (0)