On 2020-10-29 13:03:43 [-0400], John Kacur wrote: > Right, ?= in the makefile means if it's not already set, then set it to > what comes next. You could just do make PYLIB="" > in order to skip the python stuff. > > On my fedora box if you were to set it by hand it would be > make PYLIB="/usr/lib/python3.9/site-packages" This make it complicated. Usually for python things you provide an egg file or something like that. That long line above isn't that bad given that you don't install yourself to /usr/lib/python3.9/site-packages. You build a RPM page which throws it there and RPM package has build rules. > John Sebastian