linux compilation fixes

metadata
Wenzel Jakob 2011-08-16 00:51:47 -04:00
parent 5ebb8a76c2
commit f83f4b1262
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ COLLADALIB = ['collada14dom']
PYTHONINCLUDE = []
PYTHONLIB = ['boost_python']
for entry in os.popen("pkg-config --cflags --libs python").read().split():
for entry in os.popen("python-config --cflags --libs").read().split():
if entry[:2] == '-I':
PYTHONINCLUDE += [entry[2:]]
if entry[:2] == '-l':

View File

@ -23,7 +23,7 @@ COLLADALIB = ['collada14dom']
PYTHONINCLUDE = []
PYTHONLIB = ['boost_python']
for entry in os.popen("pkg-config --cflags --libs python").read().split():
for entry in os.popen("python-config --cflags --libs").read().split():
if entry[:2] == '-I':
PYTHONINCLUDE += [entry[2:]]
if entry[:2] == '-l':