From 5d40b9fa0399c95daed95cfd282a665a5ce08d4e Mon Sep 17 00:00:00 2001 From: Heikki Junes Date: Wed, 4 May 2005 08:56:38 +0000 Subject: [PATCH] * input/regression/GNUmakefile (local_delete): use `find` together with `xargs` to avoid too long argument-lists in cmd line. --- ChangeLog | 5 +++++ input/regression/GNUmakefile | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9b5cdca031..e00226195f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-05-04 Heikki Junes + + * input/regression/GNUmakefile (local_delete): use `find` together + with `xargs` to avoid too long argument-lists in cmd line. + 2005-05-04 Graham Percival * Documentation/user/introduction.itely: updates "About this manual". diff --git a/input/regression/GNUmakefile b/input/regression/GNUmakefile index a0db49332a..0110046950 100644 --- a/input/regression/GNUmakefile +++ b/input/regression/GNUmakefile @@ -8,9 +8,7 @@ TITLE=LilyPond Regression Tests 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 -- 2.39.5