diff options
| author | Charlie Sharpsteen | 2012-10-10 17:17:39 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-10-10 21:27:46 -0700 |
| commit | 922b8a55393c566bbbcb859f4984d9a4aa856b61 (patch) | |
| tree | f38c3101018403b2b5541ae81ed7c03b450f5357 /Library | |
| parent | c944f1590324a844c7beae969852ba84e1fc8668 (diff) | |
| download | homebrew-922b8a55393c566bbbcb859f4984d9a4aa856b61.tar.bz2 | |
fuse4x-kext: Use explicit path to cp in caveats
Directions for installing the fuse4x kernel extension rely on the `-X` option
which is only available from BSD `cp` and is absent in GNU `cp`.
Fixes #15364.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fuse4x-kext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/fuse4x-kext.rb b/Library/Formula/fuse4x-kext.rb index aca632298..8e53e7bac 100644 --- a/Library/Formula/fuse4x-kext.rb +++ b/Library/Formula/fuse4x-kext.rb @@ -44,7 +44,7 @@ class Fuse4xKext < Formula In order for FUSE-based filesystems to work, the fuse4x kernel extension must be installed by the root user: - sudo cp -rfX #{kext_prefix}/fuse4x.kext /Library/Extensions + sudo /bin/cp -rfX #{kext_prefix}/fuse4x.kext /Library/Extensions sudo chmod +s /Library/Extensions/fuse4x.kext/Support/load_fuse4x If upgrading from a previous version of Fuse4x, the old kernel extension |
