From d524c3c6b7ac8af0a64ebddcd55b5cb1af9a19c6 Mon Sep 17 00:00:00 2001 From: "wchang0222%aol.com" Date: Fri, 5 Nov 2004 02:35:43 +0000 Subject: [PATCH] ALL_TRASH should be defined with = rather than := because some of its constituents (e.g., TARGETS) may be redefined after coreconf/config.mk has been included (e.g., in a local config.mk file). We do not want to expand these constituents right when ALL_TRASH is defined. --- security/coreconf/ruleset.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/coreconf/ruleset.mk b/security/coreconf/ruleset.mk index 9e4d594a97d0..6fa83479973b 100644 --- a/security/coreconf/ruleset.mk +++ b/security/coreconf/ruleset.mk @@ -171,7 +171,7 @@ ifndef PACKAGE PACKAGE = . endif -ALL_TRASH := $(TARGETS) $(OBJS) $(OBJDIR) LOGS TAGS $(GARBAGE) \ +ALL_TRASH = $(TARGETS) $(OBJS) $(OBJDIR) LOGS TAGS $(GARBAGE) \ $(NOSUCHFILE) $(JDK_HEADER_CFILES) $(JDK_STUB_CFILES) \ $(JRI_HEADER_CFILES) $(JRI_STUB_CFILES) $(JNI_HEADERS) \ $(JMC_STUBS) $(JMC_HEADERS) $(JMC_EXPORT_FILES) \