Browse Source

fix fltk-config interpretation

rdb 14 years ago
parent
commit
ca21801bb1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      makepanda/makepandacore.py

+ 1 - 1
makepanda/makepandacore.py

@@ -994,7 +994,7 @@ def PkgConfigGetLibs(pkgname, tool = "pkg-config"):
     handle.close()
     handle.close()
     libs = []
     libs = []
     for l in result.split(" "):
     for l in result.split(" "):
-        if l.startswith("-l"):
+        if l.startswith("-l") or not l.startswith("-"):
             libs.append(l)
             libs.append(l)
     return libs
     return libs