From 2cb602208c3241a540cf1030493c2075f22457b5 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 18 Nov 2009 10:46:14 +0000 Subject: [PATCH] Fix typo --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 26c2e855c2..8767e0890a 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -1074,7 +1074,7 @@ def SmartPkgEnable(pkg, pkgconfig = None, libs = None, incs = None, defs = None, IncDirectory(pkg, GetThirdpartyDir() + pkg.lower() + "/include") LibDirectory(pkg, GetThirdpartyDir() + pkg.lower() + "/lib") # TODO: check for a .pc file in the lib/pkg-config/ dir - if (tool != None and os.path.isfile(GetThirdpartyDir() + pkg.lower() + "/bin/" + tool): + if (tool != None and os.path.isfile(GetThirdpartyDir() + pkg.lower() + "/bin/" + tool)): for i in PkgConfigGetLibs(pkg.lower(), tool): LibName(pkg, i) for i, j in PkgConfigGetDefSymbols(pkg.lower(), tool).items():