diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-05 21:02:35 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-05 21:02:35 +0000 |
commit | 352d081266cb97fef47265fa44a00a70c2d0ce77 (patch) | |
tree | 321ec838fe98f029c2bcc0721e236f96e0d06b21 /tools/scons | |
parent | 7dc263ddaa3bf4b0a8129282f1b6bf84a70a298e (diff) | |
download | upstream-352d081266cb97fef47265fa44a00a70c2d0ce77.tar.gz upstream-352d081266cb97fef47265fa44a00a70c2d0ce77.tar.bz2 upstream-352d081266cb97fef47265fa44a00a70c2d0ce77.zip |
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.patch | 11 |
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 0000000000..8aab9041c7 --- /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': |