* device/lib/Makefile.in: added the -f option to rm so it doesn't
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 3 Feb 2007 16:09:18 +0000 (16:09 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 3 Feb 2007 16:09:18 +0000 (16:09 +0000)
  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

ChangeLog
device/lib/Makefile.in

index 7da82326e961025e5aa2ba691bbc260477a9c055..e5338aa17878acf890e8181c13fb6f9f6b806bb7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,15 @@
 2007-02-03 Borut Razem <borut.razem AT siol.net>
 
-       * 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 <jesusc at ece.ubc.ca>
 
index b704d3bbe64d4566db9af604c56f3ade9b2bbdd1..402174156fac11ff53899205a4b4bf697533e07c 100644 (file)
@@ -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
 # --------------------------------