From: James Peach Date: Fri, 21 Apr 2006 00:14:57 +0000 (+0000) Subject: r15157: Systems with argv limits can't handle the full list of $(DEP_FILE). Replace X-Git-Url: http://git.samba.org/samba.git/?p=gd%2Fsamba%2F.git;a=commitdiff_plain;h=041456554e32166ce3612ef62cf76e504de30696 r15157: Systems with argv limits can't handle the full list of $(DEP_FILE). Replace with the (hopefuly) equivalent find/rm sequence. (This used to be commit 2bce5c9465ebd245d153196fbedd764378c36827) --- diff --git a/source4/main.mk b/source4/main.mk index 6eba282be0c..26d228fa6f9 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -372,4 +372,5 @@ configure: clean:: @echo Removing dependency files - @rm -f $(DEP_FILES) + @find . -name \*.d -o -name \*.hd | xargs rm -f +