From bab7b40a4946def8df11b0b22806d01381151c27 Mon Sep 17 00:00:00 2001 From: junkblocker Date: Fri, 17 Dec 2010 11:40:42 -0800 Subject: [PATCH] Don't rely on GNU find behaviour in clean.do. --- clean.do | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clean.do b/clean.do index 23e993b..7753332 100644 --- a/clean.do +++ b/clean.do @@ -7,4 +7,4 @@ fi redo t/clean Documentation/clean rm -f *~ .*~ */*~ */.*~ *.pyc install.wrapper rm -rf t/.redo -find -name '*.tmp' -exec rm -fv {} \; +find . -name '*.tmp' -exec rm -fv {} \;