You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2005/10/28 23:00:29 UTC

svn commit: r329296 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules

Author: dlydick
Date: Fri Oct 28 14:00:21 2005
New Revision: 329296

URL: http://svn.apache.org/viewcvs?rev=329296&view=rev
Log:
Make silent the test and optional 'chmod' of target directories.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules?rev=329296&r1=329295&r2=329296&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/MakeRules Fri Oct 28 14:00:21 2005
@@ -259,7 +259,7 @@
 	$(CLEAN_SILENT)-rmdir $(BINDIR)
 
 veryclean::
-	for d in $(CLSDIR) $(LIBDIR) $(BINDIR); \
+	$(CLEAN_SILENT)for d in $(CLSDIR) $(LIBDIR) $(BINDIR); \
 		do if test -d $$d/.; then chmod -R +w $$d; fi; done
 	$(CLEAN_SILENT)-rm -rf $(CLSDIR) $(LIBDIR) $(BINDIR)
 
@@ -308,7 +308,7 @@
 	$(CLEAN_SILENT)-rmdir $(BINDIR)
 
 veryclean::
-	if test -d $(BINDIR); then chmod -R +w $(BINDIR); fi
+	$(CLEAN_SILENT)if test -d $(BINDIR); then chmod -R +w $(BINDIR); fi
 	$(CLEAN_SILENT)-rm -rf $(BINDIR)
 
 endif # BIN_TARGET
@@ -344,7 +344,7 @@
 	$(CLEAN_SILENT)-rmdir $(LIBDIR)
 
 veryclean::
-	if test -d $(LIBDIR); then chmod -R +w $(LIBDIR); fi
+	$(CLEAN_SILENT)if test -d $(LIBDIR); then chmod -R +w $(LIBDIR); fi
 	$(CLEAN_SILENT)-rm -rf $(LIBDIR)
 
 endif # LIB_TARGET