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

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