CVS User Account cvsuser
Wed May 4 19:42:34 PDT 2005
Log Message:
-----------
Fix to Makefile for altperl tools per Tim Goodaire; it needed
a (missed) reference to the destination directory.

Modified Files:
--------------
    slony1-engine/tools/altperl:
        Makefile (r1.9 -> r1.10)

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/altperl/Makefile,v
retrieving revision 1.9
retrieving revision 1.10
diff -Ltools/altperl/Makefile -Ltools/altperl/Makefile -u -w -r1.9 -r1.10
--- tools/altperl/Makefile
+++ tools/altperl/Makefile
@@ -36,11 +36,11 @@
 ifndef toolsbin
 	@echo "The altperl tools won't be installed unless --with-perltools is specified in configure"
 else
-	$(INSTALL_DATA)   slon_tools.conf-sample $(sysconfdir)
-	$(INSTALL_DATA)   slon-tools             $(pglibdir)/slon-tools.pm
+	$(INSTALL_DATA)   slon_tools.conf-sample $(DESTDIR)$(sysconfdir)
+	$(INSTALL_DATA)   slon-tools             $(DESTDIR)$(pglibdir)/slon-tools.pm
 	for file in $(wildcard *.pl) ; do \
 		tmpname=`echo $$file | $(SED) "s#\.pl##"` ; \
-		$(INSTALL_SCRIPT) $$tmpname $(toolsbin) ; \
+		$(INSTALL_SCRIPT) $$tmpname $(DESTDIR)$(toolsbin) ; \
 	done
 endif
 


More information about the Slony1-commit mailing list