From 27cd2c425c28900574c7699e3ab8c4edc37ce20f Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 22 Sep 2009 17:58:29 +0000 Subject: [PATCH] Linker fix --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 3275cebda6..05c3ad47bc 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -964,7 +964,7 @@ def PkgEnable(pkg, pkgconfig = None, libs = None, incs = None, defs = None, fram if (len(glob.glob(THIRDPARTYLIBS + pkg.lower() + "/lib/libpanda%s.*" % libname)) > 0 and len(glob.glob(THIRDPARTYLIBS + pkg.lower() + "/lib/lib%s.*" % libname)) == 0): libname = "panda" + libname - LibName(pkg, libname) + LibName(pkg, "-l" + libname) for d, v in defs.values(): DefSymbol(pkg, d, v) elif (sys.platform == "darwin" and framework != None):