From: borutr Date: Sat, 3 Feb 2007 16:09:18 +0000 (+0000) Subject: * device/lib/Makefile.in: added the -f option to rm so it doesn't X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=a0ead9e6567f2208a0e94399d68413dd24efd2b1;p=fw%2Fsdcc * device/lib/Makefile.in: added the -f option to rm so it doesn't prompt for file deletion a few hundred times (especially the subversion files, which have ro permissions so it asks for confirmation), thanks to Simon McAuliffe; added {}+ option to find in order to remove multiple files from a single rm commad git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4616 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 7da82326..e5338aa1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,15 @@ 2007-02-03 Borut Razem - * sdc/SDCC.y, src/SDCCmain.c, src/SDCCglobl.h, doc/sdccman.lyx: + * src/SDCC.y, src/SDCCmain.c, src/SDCCglobl.h, doc/sdccman.lyx: applied patch #1646602 option to set default signedness of char to unsigned, added -funsigned-char command line option, thanks to Gunther Jehle + * device/lib/Makefile.in: added the -f option to rm so it doesn't + prompt for file deletion a few hundred times (especially the + subversion files, which have ro permissions so it asks for + confirmation), thanks to Simon McAuliffe; + added {} + option to find in order to remove multiple files from a + single rm commad 2007-02-02 Jesus Calvino-Fraga diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index b704d3bb..40217415 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -355,13 +355,13 @@ install: all installdirs \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \ -name '*.lst' -o -name '*.asm' -o -name '.svn' -o -name 'build' -o -name 'bin' -o \ -name 'Makefile*' \) \ - -exec rm -r {} \; ; \ + -exec rm -rf {}+ \; ; \ done find $(sdcc_libdir)/src/mcs51 -depth \ \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \ -name '*.lst' -o -name '.svn' -o -name 'build' -o -name 'bin' -o \ -name 'Makefile*' \) \ - -exec rm -r {} \; + -exec rm -rf {}+ \; # Deleting all the installed files # --------------------------------