From 8d035dd14d6ddf8a17a2b99f7336f33a9a1f94f6 Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 30 Apr 2011 14:35:06 +0000 Subject: [PATCH] hack fix for the wx compile error on osx --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 3a24e20f89..2777abe202 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -994,7 +994,7 @@ def PkgConfigGetLibs(pkgname, tool = "pkg-config"): handle.close() libs = [] for l in result.split(" "): - if l.startswith("-l") or not l.startswith("-"): + if l.startswith("-l") or l.startswith("/"): libs.append(l) return libs