diff options
Diffstat (limited to 'tools/scons/patches/.svn')
-rw-r--r-- | tools/scons/patches/.svn/entries | 62 | ||||
-rw-r--r-- | tools/scons/patches/.svn/text-base/001-platform_env.patch.svn-base | 11 |
2 files changed, 73 insertions, 0 deletions
diff --git a/tools/scons/patches/.svn/entries b/tools/scons/patches/.svn/entries new file mode 100644 index 0000000..421ac73 --- /dev/null +++ b/tools/scons/patches/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/scons/patches +svn://svn.openwrt.org/openwrt + + + +2012-05-15T13:42:36.976615Z +31741 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +001-platform_env.patch +file + + + + +2013-03-17T12:13:23.000000Z +b700bd509ac40c87dc61f7b6e8172f70 +2012-05-05T21:02:35.091976Z +31620 +nbd + + + + + + + + + + + + + + + + + + + + + +350 + diff --git a/tools/scons/patches/.svn/text-base/001-platform_env.patch.svn-base b/tools/scons/patches/.svn/text-base/001-platform_env.patch.svn-base new file mode 100644 index 0000000..8aab904 --- /dev/null +++ b/tools/scons/patches/.svn/text-base/001-platform_env.patch.svn-base @@ -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': |