Skip to content

Commit

Permalink
meson.build: don't use cp -p instead of --preserve-mode
Browse files Browse the repository at this point in the history
The latter is not supported on OS X.
  • Loading branch information
Nikratio committed Oct 25, 2017
1 parent 2731a00 commit fd3aa65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit fd3aa65

Please sign in to comment.