mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
fix fltk-config interpretation
This commit is contained in:
parent
433f5404b5
commit
ca21801bb1
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user