From 5be6aefa8f29e95ee50d13fded9486d6541c925f Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 21 Jul 2009 17:43:25 +0000 Subject: [PATCH] Stupid typo. --- makepanda/makepanda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 762af16af9..dc1c7981ec 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -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/"