From 80b1b4ad1e95522b5995c501ca3cf1c2ef1bdf73 Mon Sep 17 00:00:00 2001
From: Norm Jacobs <Norm.Jacobs@Sun.COM>
Date: Wed, 12 May 2010 07:32:41 +0200
Subject: [PATCH] add compiler date/time chatter reduction tools

---
 make-rules/configure.mk |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/make-rules/configure.mk b/make-rules/configure.mk
index 6edba04..ed22135 100644
--- a/make-rules/configure.mk
+++ b/make-rules/configure.mk
@@ -78,13 +78,14 @@
 # build the configured source
 $(COMPONENT_SRC)/build-%/.built:	$(COMPONENT_SRC)/build-%/.configured
 	$(COMPONENT_PRE_BUILD_ACTION)
-	(cd $(@D) ; $(GMAKE) $(COMPONENT_BUILD_TARGETS))
+	(cd $(@D) ; $(COMPONENT_BUILD_ENV) $(GMAKE) $(COMPONENT_BUILD_TARGETS))
 	$(COMPONENT_POST_BUILD_ACTION)
 	$(TOUCH) $@
 
 # install the built source into a prototype area
 $(COMPONENT_SRC)/build-%/.installed:	$(COMPONENT_SRC)/build-%/.built
 	$(COMPONENT_PRE_INSTALL_ACTION)
-	(cd $(@D) ; $(GMAKE) DESTDIR=$(PROTO_DIR)  $(COMPONENT_INSTALL_TARGETS))
+	(cd $(@D) ; $(COMPONENT_INSTALL_ENV) $(GMAKE) \
+			DESTDIR=$(PROTO_DIR) $(COMPONENT_INSTALL_TARGETS))
 	$(COMPONENT_POST_INSTALL_ACTION)
 	$(TOUCH) $@

--
Gitblit v1.9.3