aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-04-27 09:41:06 +1000
committerDavid Walter Seikel2013-04-27 09:41:06 +1000
commit3932afd085f2bc480f7ba5c664972a616d1b6939 (patch)
tree06265ebcd59692738484c74b8646bfeb2cefb6ec /linden
parentMake sure the TYPE variable is actually defined for nmake builds. (diff)
downloadmeta-impy-3932afd085f2bc480f7ba5c664972a616d1b6939.zip
meta-impy-3932afd085f2bc480f7ba5c664972a616d1b6939.tar.gz
meta-impy-3932afd085f2bc480f7ba5c664972a616d1b6939.tar.bz2
meta-impy-3932afd085f2bc480f7ba5c664972a616d1b6939.tar.xz
Fix Windows autobuild support, coz it's different from the others. sigh
Diffstat (limited to 'linden')
-rwxr-xr-xlinden/scripts/install.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/scripts/install.py b/linden/scripts/install.py
index b39dd5a..1e2bccb 100755
--- a/linden/scripts/install.py
+++ b/linden/scripts/install.py
@@ -620,6 +620,9 @@ windows/i686/vs/2003 -- specify a windows visual studio 2003 package"""
620 # Linux is special, coz it's got server code. 620 # Linux is special, coz it's got server code.
621 if _get_platform() == 'linux' or _get_platform() == 'linux64': 621 if _get_platform() == 'linux' or _get_platform() == 'linux64':
622 path = install_dir + "/libraries/" + dest_name + "lib_" + entry + "_client" 622 path = install_dir + "/libraries/" + dest_name + "lib_" + entry + "_client"
623 # Windows is also special.
624 if _get_platform() == 'windows':
625 path = install_dir + "/libraries/" + dest_name + "lib/" + entry
623 if not os.path.exists(path): 626 if not os.path.exists(path):
624 os.makedirs(path) 627 os.makedirs(path)
625 for filename in os.listdir(auto_name + "/" + entry): 628 for filename in os.listdir(auto_name + "/" + entry):