gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz Makefile


From: Vesa Kaihlavirta
Subject: [Gzz-commits] gzz Makefile
Date: Thu, 14 Nov 2002 09:56:00 -0500

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Vesa Kaihlavirta <address@hidden>       02/11/14 09:56:00

Modified files:
        .              : Makefile 

Log message:
        Using -f in rm, so that stupid errors won't stop the rule from 
executing.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/Makefile.diff?tr1=1.210&tr2=1.211&r1=text&r2=text

Patches:
Index: gzz/Makefile
diff -u gzz/Makefile:1.210 gzz/Makefile:1.211
--- gzz/Makefile:1.210  Sun Nov 10 18:08:55 2002
+++ gzz/Makefile        Thu Nov 14 09:56:00 2002
@@ -341,8 +341,8 @@
        $(RM) -r independent/
        @echo "Removing everything found in .cvsignore's"
        find . -name ".cvsignore"|while read ign; do (cd `dirname $$ign` && cat 
.cvsignore|while read files; do rm -Rf $$files; done); done
-       find . -name "*.so" | xargs rm
-       find . -name "*.o" | xargs rm
+       find . -name "*.so" | xargs rm -f
+       find . -name "*.o" | xargs rm -f
 
 tags::
        ctags -R




reply via email to

[Prev in Thread] Current Thread [Next in Thread]