From: bernhardheld Date: Tue, 7 Oct 2003 08:13:11 +0000 (+0000) Subject: clean.mk: removed \'=\' in "-maxdepth=1" X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=529c3d57ef4bc2112d786e82d961691b803484ec;p=fw%2Fsdcc clean.mk: removed \'=\' in "-maxdepth=1" git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2927 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 1e78e64d..0f017884 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-10-06 Bernhard Held + + * clean.mk: removed '=' in "-maxdepth=1" + 2003-10-06 Borut Razem * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions; diff --git a/clean.mk b/clean.mk index f1274134..62a746d0 100644 --- a/clean.mk +++ b/clean.mk @@ -3,7 +3,7 @@ clean: rm -f *core *[%~] *.[oa] rm -f .[a-z]*~ - find bin -maxdepth=1 -type f ! -name README -exec rm {} \; + find bin -maxdepth 1 -type f ! -name README -exec rm {} \; # Deleting all files created by configuring or building the program # -----------------------------------------------------------------