jvandal / modwsgi

Automatically exported from code.google.com/p/modwsgi
0 stars 0 forks source link

libexecdir apparently ignored by ./configure #167

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
On OS X 10.5.8:

What steps will reproduce the problem?
1. ./configure --libexecdir=/my/other/path
2. make
3. make install

Instead of getting the .so into /my/other/path, LIBEXECDIR in the makefile
is always being set to the Apache2 path (/usr/libexec/apache2).

Original issue reported on code.google.com by fla...@gmail.com on 12 Nov 2009 at 9:18

GoogleCodeExporter commented 8 years ago
Which is how it is meant to work. Options such as --libexecdir are ignored. The 
module is always installed where 
Apache believes it should be installed. If you want the .so copied into a 
different location, then copy it by hand 
after having run 'make'.

  cp .libs/mod_wsgi.so /my/other/path/

Original comment by Graham.Dumpleton@gmail.com on 12 Nov 2009 at 9:36