Stupid typo.

This commit is contained in:
rdb 2009-07-21 17:43:25 +00:00
parent 7c189bc23f
commit 5be6aefa8f

View File

@ -227,12 +227,12 @@ else:
if (sys.platform == "darwin"):
THIRDPARTYLIBS="thirdparty/darwin-libs-a/"
elif (sys.platform.startswith("linux")):
elif (platform.architecture()[0] == "64bit"):
if (platform.architecture()[0] == "64bit"):
THIRDPARTYLIBS="thirdparty/linux-libs-x64/"
else:
THIRDPARTYLIBS="thirdparty/linux-libs-a/"
elif (sys.platform.startswith("freebsd")):
elif (platform.architecture()[0] == "64bit"):
if (platform.architecture()[0] == "64bit"):
THIRDPARTYLIBS="thirdparty/freebsd-libs-x64/"
else:
THIRDPARTYLIBS="thirdparty/freebsd-libs-a/"