* device/include/Makefile.in (install),
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 31 Jan 2004 22:35:46 +0000 (22:35 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 31 Jan 2004 22:35:46 +0000 (22:35 +0000)
* doc/Makefile (install): changed to 'rm `find ...`' construct to avoid warnings

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3165 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
device/include/Makefile.in
doc/Makefile

index f2a1d3f8ee793b315b2d996dd1dd8ee82d0d8d5c..25c1c335be0a3dabbef18bf74debc5534bea99fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,6 +25,9 @@
        * support/Util/SDCCerr.h:
        * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
        * .version: bumped version number to 2.3.8
+       * device/include/Makefile.in (install),
+       * doc/Makefile (install): changed to 'rm `find ...`' construct to
+       avoid warnings
 
 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
 
index 42ead5267f9de63a361c786f2329394aeb2973ef..594e8575da8c057163c9072c0090eb1e2d00e0de 100644 (file)
@@ -44,7 +44,7 @@ install: all installdirs
         if [ "`grep pic16 ../../ports.build`" = pic16 ]; then \
                 $(CP) pic16/*.h $(sdcc_includedir)/pic16 ; \
         fi \
-       find $(sdcc_includedir) -type d -name 'CVS' -exec rm {} \;
+       rm -rf `find $(sdcc_includedir) -type d -name 'CVS'`
 
 
 # Deleting all the installed files
index 5c27572ada452501f9b7c1abdb640161313acb42..25f75328bf2295837a514c4bb3c39d7c3d5d42e9 100644 (file)
@@ -17,7 +17,7 @@ install:
        if [ -f $(MANUAL).pdf             ]; then cp -rf $(MANUAL).pdf  $(docdir); fi
        if [ -f $(TSS).pdf                ]; then cp -rf $(TSS).pdf     $(docdir); fi
        if [ -f $(CDB).pdf                ]; then cp -rf $(CDB).pdf     $(docdir); fi
-       [ -d $(docdir) ] find $(docdir) -name CVS -type d -exec rm -r {} \;
+       rm -rf `find $(docdir) -name CVS -type d`
        rm -f $(docdir)/*/WARNINGS $(docdir)/*/*.pl $(docdir)/*/images.*
 
 uninstall: