From ad35c4c8cc9aa34daa6c38213e5b2c91f70fd9e0 Mon Sep 17 00:00:00 2001 From: "edburns%acm.org" Date: Tue, 12 Jun 2001 20:52:31 +0000 Subject: [PATCH] Changed del and rmdir to rm -rf. clobber_all didn't work on win32. git-svn-id: svn://10.0.0.236/trunk@96965 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/java/build/Makefile.win | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/java/build/Makefile.win b/mozilla/java/build/Makefile.win index 4c4b5cc9c84..ec0ebb22d06 100644 --- a/mozilla/java/build/Makefile.win +++ b/mozilla/java/build/Makefile.win @@ -229,12 +229,12 @@ install::buildRunems clobber:: - del /Q $(DIST)\..\*.xpi - rmdir /S/Q $(DIST)\..\javadev - rmdir /S/Q $(DIST)\..\java + rm -rf $(DIST)\..\*.xpi + rm -rf $(DIST)\..\javadev + rm -rf $(DIST)\..\java clobber_all::clobber -clean::clobber \ No newline at end of file +clean::clobber