Jeff Davis
list-mod_python at empires.org
Fri Sep 13 02:03:37 EST 2002
I mentioned a problem with the build on my system, wherein the PYTHONBIN variable was not being defined in the Makefile. Here is a simple patch to Makefile.in (from the old to the new) that just adds the PYTHONBIN variable (and sets it to the PYTHON_BIN variable of the configure script). I am not too familiar with build systems, so forgive me if I'm way off track about how to change these things. Or, maybe I just wasn't building it properly in the first place and it was working the whole time. Regards, Jeff --- Makefile.in~ 2002-08-11 19:01:15.000000000 -0700 +++ Makefile.in 2002-09-13 01:56:50.000000000 -0700 @@ -50,6 +50,7 @@ AP_SRC_GRP=@AP_SRC_GRP@ INSTALL=@INSTALL@ PY_STD_LIB=@PY_STD_LIB@ +PYTHONBIN=@PYTHON_BIN@ all: @ALL@
|