Sorry, my bad.

I checked the Makefile and found I am using python3 instead of python2.

I am running ArchLinux and python3 is the linked to /usr/bin/python
I had to change the following in the Makefile:

350,351c350,351
< PYTHON = /usr/bin/python
< PYTHON_CPPFLAGS = -I/usr/include/python3.6m

PYTHON = /usr/bin/python2
PYTHON_CPPFLAGS = -I/usr/include/python2.7
354,356c354,356
< PYTHON_LIBRARY = /usr/lib/x86_64-linux-gnu/libpython3.6m.so.1.0
< PYTHON_LIBS = -L/usr/lib -lpython3.6m
< PYTHON_SITE_PKG = /usr/lib/python3.6/site-packages


PYTHON_LIBRARY = /usr/lib/libpython2.7.so
PYTHON_LIBS = -L/usr/lib -lpython2.7
PYTHON_SITE_PKG = /usr/lib/python2.7/site-packages

Where do I need to go to fix the generated makefile?

Thanks,

-Dave


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.