diff options
author | James Peach <jpeach@samba.org> | 2006-04-21 00:14:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:04:12 -0500 |
commit | 041456554e32166ce3612ef62cf76e504de30696 (patch) | |
tree | 0ac820310fbab687916886510c94cc71af458d82 | |
parent | 346212d8f98c44a78517561510da193a08dba41a (diff) | |
download | samba-041456554e32166ce3612ef62cf76e504de30696.tar.gz samba-041456554e32166ce3612ef62cf76e504de30696.tar.bz2 samba-041456554e32166ce3612ef62cf76e504de30696.zip |
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)
-rw-r--r-- | source4/main.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/main.mk b/source4/main.mk index 6eba282be0..26d228fa6f 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 + |