CVS User Account cvsuser
Fri Mar 25 09:45:30 PST 2005
Log Message:
-----------
Fix make clean. Added -f to the rm statements. This prevents an error from being raised if a file is not there.

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

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/altperl/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -Ltools/altperl/Makefile -Ltools/altperl/Makefile -u -w -r1.8 -r1.9
--- tools/altperl/Makefile
+++ tools/altperl/Makefile
@@ -59,6 +59,6 @@
 clean distclean maintainer-clean:
 	@for file in $(wildcard *.pl) $(wildcard *.pm); do \
 		tmpname=`echo $$file | $(SED) "s#\.p[lm]##"` ; \
-		rm $$tmpname ; \
+		rm -f $$tmpname ; \
 	done
 


More information about the Slony1-commit mailing list