From: Nuno Lopes Date: Tue, 3 Nov 2009 22:39:56 +0000 (+0000) Subject: make 'make clean' work on Solaris, per Gabor Greif comment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f758dc0812e7d0a846d2e07047a9c675e2ecb191;p=clang make 'make clean' work on Solaris, per Gabor Greif comment git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85958 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index 75b8601190..fdb9d8f713 100644 --- a/test/Makefile +++ b/test/Makefile @@ -44,6 +44,6 @@ lit.site.cfg: FORCE $(PROJ_SRC_DIR)/lit.site.cfg.in > $@ clean:: - @ find -name Output | xargs rm -fr + @ find . -name Output | xargs rm -fr .PHONY: all report clean