CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Heikki Johannes Junes <[EMAIL PROTECTED]>       05/05/04 
08:56:38

Modified files:
        .              : ChangeLog 
        input/regression: GNUmakefile 

Log message:
        * input/regression/GNUmakefile (local_delete): use `find` together
        with `xargs` to avoid too long argument-lists in cmd line.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3547&tr2=1.3548&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/input/regression/GNUmakefile.diff?tr1=1.12&tr2=1.13&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3547 lilypond/ChangeLog:1.3548
--- lilypond/ChangeLog:1.3547   Wed May  4 03:59:59 2005
+++ lilypond/ChangeLog  Wed May  4 08:56:37 2005
@@ -1,3 +1,8 @@
+2005-05-04  Heikki Junes  <[EMAIL PROTECTED]>
+
+       * input/regression/GNUmakefile (local_delete): use `find` together 
+       with `xargs` to avoid too long argument-lists in cmd line.
+
 2005-05-04  Graham Percival  <[EMAIL PROTECTED]>
 
        * Documentation/user/introduction.itely: updates "About this manual".
Index: lilypond/input/regression/GNUmakefile
diff -u lilypond/input/regression/GNUmakefile:1.12 
lilypond/input/regression/GNUmakefile:1.13
--- lilypond/input/regression/GNUmakefile:1.12  Wed Apr 13 15:29:00 2005
+++ lilypond/input/regression/GNUmakefile       Wed May  4 08:56:38 2005
@@ -8,9 +8,7 @@
 
 local-clean: local-delete
 
-# have to do it in 2 steps to prevent
-# argument-list too long.
+# use `find` together with `xargs` to avoid too long argument-lists.
 local-delete:
-       rm -f $(outdir)/lily-1*
-       rm -f $(outdir)/*
+       $(FIND) $(outdir)/ -empty -name '*' | xargs rm -f
 


_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to