Your toplevel makefile states
INSTALL_MOD_SHARED = @APXS@ -i -S LIBEXECDIR="$(APACHE_LIBEXECDIR)" @MOD_ACTIVATION@
where
APACHE_LIBEXECDIR = $(DESTDIR)@APACHE_LIBEXECDIR@
which causes the install to fail with
cp .libs/mod_dav_svn.soT /usr/lib/httpd/modules/mod_dav_svn.so
cp: cannot create regular file `/usr/lib/httpd/modules/mod_dav_svn.so': Permission denied
Obviously, by adding DESTDIR to the make install command,
this is avoided, and then everything works fine.
Arjen
| On Mon, 2004-09-13 at 12:54, Arjen P. de Vries wrote:
| > Installing subversion locally using
| > ./configure --prefix=/some/path/where/I/can/write
| > requires also giving the DESTDIR option when issuing
| > make install
|
| Not in my experience.
|
| > The problem is the makefile in
| > subversion/mod_dav_svn
| > that does not use the prefix setting.
|
| There is no makefile in subversion/mod_dav_svn. We use a single
| top-level makefile.
|
| > Note this related post:
| > http://subversion.tigris.org/servlets/ReadMsg?list=users&msgId=278611
|
| I'm not seeing the relevance.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Sep 13 22:29:57 2004