CVS User Account cvsuser
Tue Mar 28 12:55:46 PST 2006
Log Message:
-----------
Fix to bug #1508 - Permission setting problem on altperl tools
http://gborg.postgresql.org/project/slony1/bugs/bugupdate.php?1508

...Now I can see why this is occurring: altperl's 'install' target calls 'all'
which attempts to chmod the files. In my particular setup (NFS-mounted home
directory w/ root squash) root cannot chmod my files in my home directory. I
concede this setup may not be all that common, and easy enough to work around
(build in local dir like /tmp) but simply removing 'all' from the 'install'
target fixes the problem.

The "all" has been removed from the install target, which looks like a
reasonable change.

Modified Files:
--------------
    slony1-engine/tools/altperl:
        Makefile (r1.12 -> r1.13)

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/altperl/Makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -Ltools/altperl/Makefile -Ltools/altperl/Makefile -u -w -r1.12 -r1.13
--- tools/altperl/Makefile
+++ tools/altperl/Makefile
@@ -34,7 +34,7 @@
 	done
 endif
 
-install: all installdirs
+install: installdirs
 ifndef toolsbin
 	@echo "The altperl tools won't be installed unless --with-perltools is specified in configure"
 else



More information about the Slony1-commit mailing list