Merge pull request #53675 from jacereda/darwin-cmds-binpath

darwin: basic_cmds was installing binaries in the wrong path
This commit is contained in:
Matthew Bauer 2019-01-08 15:57:56 -06:00 committed by GitHub
commit 5b40c0a21f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ appleDerivation rec {
installPhase = ''
for f in Products/Release/*; do
if [ -f $f ]; then
install -D $f $out/usr/bin/$(basename $f)
install -D $f $out/bin/$(basename $f)
fi
done