Hey,

I have created a rpm spec file for packaging this up into a rpm for my 
installation. I have noticed however that the configure script isn't 
honoring the -exec-prefix location passed. It's in the following line in 
configure:

LIBEXECDIR="`${APXS} -q LIBEXECDIR`"

In order to get this working I've changed it to be:

if [ $exec_prefix == "NONE"  ];then
    LIBEXECDIR="`${APXS} -q LIBEXECDIR`"
else
    LIBEXECDIR="$exec_prefix`${APXS} -q LIBEXECDIR`"
fi

I was going to create a issue on the google code for the project but I just 
wanted to run it by here first to make sure it sounds sensible.

Regards,

Hugh

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/modwsgi/-/zqbE0k-mM2IJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en.

Reply via email to