about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/scons
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-14 13:57:41 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-14 13:57:41 -0600
commitb6fce7201ed29e601b0f7e4fd2f1fd0ce4faf042 (patch)
treed9c011728da76c4a9bf2bd3aa09f22c411e9f3a6 /pkgs/development/tools/build-managers/scons
parent73951bc0c8c02fabe97e645838a52a12618dcd8f (diff)
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.
Diffstat (limited to 'pkgs/development/tools/build-managers/scons')
-rw-r--r--pkgs/development/tools/build-managers/scons/setup-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/build-managers/scons/setup-hook.sh b/pkgs/development/tools/build-managers/scons/setup-hook.sh
index bb5591c46203e..55159aa5a93aa 100644
--- a/pkgs/development/tools/build-managers/scons/setup-hook.sh
+++ b/pkgs/development/tools/build-managers/scons/setup-hook.sh
@@ -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