From ca21801bb1ba1d0ec174c952b56fe9b5570082ef Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 14 Apr 2011 11:25:23 +0000 Subject: [PATCH] fix fltk-config interpretation --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index d743b927ce..3a24e20f89 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"): + if l.startswith("-l") or not l.startswith("-"): libs.append(l) return libs