xboxdrv: add dontUseSconsInstall flag

xboxdrv doesn’t use scons for installing, but instead using a
makefile! Everything else is in scons so we have to keep that. I’ve
added a dontUseSconsInstall flag to the scons setup-hook to skip the
automatic overwrite of default “make install” call.
This commit is contained in:
Matthew Bauer
2018-11-14 13:57:41 -06:00
parent 73951bc0c8
commit b6fce7201e
2 changed files with 4 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ if [ -z "$buildPhase" ]; then
buildPhase=sconsBuildPhase
fi
if [ -z "$installPhase" ]; then
if [ -z "$dontUseSconsInstall" -a -z "$installPhase" ]; then
installPhase=sconsInstallPhase
fi