summaryrefslogtreecommitdiff
path: root/tools/scons
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-05-05 21:02:35 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-05-05 21:02:35 +0000
commit352d081266cb97fef47265fa44a00a70c2d0ce77 (patch)
tree321ec838fe98f029c2bcc0721e236f96e0d06b21 /tools/scons
parent7dc263ddaa3bf4b0a8129282f1b6bf84a70a298e (diff)
downloadmtk-20170518-352d081266cb97fef47265fa44a00a70c2d0ce77.zip
mtk-20170518-352d081266cb97fef47265fa44a00a70c2d0ce77.tar.gz
mtk-20170518-352d081266cb97fef47265fa44a00a70c2d0ce77.tar.bz2
scons: override the platform instead of using the host one - fixes build issues on non-linux systems
SVN-Revision: 31620
Diffstat (limited to 'tools/scons')
-rw-r--r--tools/scons/patches/001-platform_env.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/scons/patches/001-platform_env.patch b/tools/scons/patches/001-platform_env.patch
new file mode 100644
index 0000000..8aab904
--- /dev/null
+++ b/tools/scons/patches/001-platform_env.patch
@@ -0,0 +1,11 @@
+--- a/engine/SCons/Platform/__init__.py
++++ b/engine/SCons/Platform/__init__.py
+@@ -63,6 +63,8 @@ def platform_default():
+ care about the machine architecture.
+ """
+ osname = os.name
++ if 'PLATFORM' in os.environ:
++ return os.environ['PLATFORM']
+ if osname == 'java':
+ osname = os._osType
+ if osname == 'posix':