From c329d776ebd46b8dbf85de6b0fa5076f567703e2 Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Tue, 11 Jan 2000 22:11:02 +0000 Subject: [PATCH] when using SunOS and not using GCC, clobber now removes the Sun WorkShop template repository cache, as this can get out of sync. r=cls@seawood.org,akkana@netscape.com --- config/rules.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/rules.mk b/config/rules.mk index 7c4aae7cb28f..e74e939445e7 100644 --- a/config/rules.mk +++ b/config/rules.mk @@ -201,6 +201,16 @@ ifdef QTDIR ALL_TRASH += $(MOCSRCS) endif +# +# the Solaris WorkShop template repository cache. it occasionally can get +# out of sync, so targets like clobber should kill it. +# +ifeq ($(OS_ARCH),SunOS) +ifeq ($(GNU_CXX),) +ALL_TRASH += SunWS_cache +endif +endif + ifdef JAVA_OR_NSJVM JMC_SUBDIR = _jmc else