1
0
forked from GitHub/gf-core

bin/build-binary-dist.sh: fix hardcoded /usr install path for .pkg packages.

This commit is contained in:
hallgren
2015-10-01 12:49:55 +00:00
parent f89cf16d25
commit 3c90f664f7

View File

@@ -58,7 +58,7 @@ case $fmt in
;;
pkg)
pkg=$name.pkg
pkgbuild --identifier org.grammaticalframework.gf.pkg --version "$ver" --root "$destdir/usr" --install-location "$prefix" dist/$pkg
pkgbuild --identifier org.grammaticalframework.gf.pkg --version "$ver" --root "$destdir$prefix" --install-location "$prefix" dist/$pkg
echo "Created $pkg"
esac