* [Buildroot] [pull request] Pull request for branch for-2011.02/fix-external-toolchain
@ 2010-12-23 9:31 Thomas Petazzoni
2010-12-23 9:31 ` [Buildroot] [PATCH 1/1] toolchain: add missing stamp file touch in external toolchain Thomas Petazzoni
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2010-12-23 9:31 UTC (permalink / raw)
To: buildroot
The following changes since commit 11ab05f53a16f635a27139b33170a9dadba9f3c5:
Peter Korsgaard (1):
qt: svg and multimedia modules depends on gui module as well
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot for-2011.02/fix-external-toolchain
Thomas Petazzoni (1):
toolchain: add missing stamp file touch in external toolchain
toolchain/toolchain-external/ext-tool.mk | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 3+ messages in thread* [Buildroot] [PATCH 1/1] toolchain: add missing stamp file touch in external toolchain
2010-12-23 9:31 [Buildroot] [pull request] Pull request for branch for-2011.02/fix-external-toolchain Thomas Petazzoni
@ 2010-12-23 9:31 ` Thomas Petazzoni
2010-12-23 10:13 ` Peter Korsgaard
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2010-12-23 9:31 UTC (permalink / raw)
To: buildroot
In the support of custom external toolchains, we forgot to touch the
$(STAMP_DIR)/ext-toolchain-checked stamp file, which means that the
toolchain was re-checked and re-installed at everyt build.
At the same time, quietize a bit other stamp files touch.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
toolchain/toolchain-external/ext-tool.mk | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk
index d6153f1..ab8bc94 100644
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -137,7 +137,7 @@ $(DL_DIR)/$(TOOLCHAIN_EXTERNAL_SOURCE):
$(TOOLCHAIN_EXTERNAL_DIR)/.extracted: $(DL_DIR)/$(TOOLCHAIN_EXTERNAL_SOURCE)
mkdir -p $(@D)
$(INFLATE$(suffix $(TOOLCHAIN_EXTERNAL_SOURCE))) $^ | $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
- touch $@
+ $(Q)touch $@
# Checks for an already installed toolchain: check the toolchain
# location, check that it supports sysroot, and then verify that it
@@ -165,6 +165,7 @@ $(STAMP_DIR)/ext-toolchain-checked:
else \
$(call check_glibc,$${SYSROOT_DIR}) ; \
fi
+ $(Q)touch $@
# Integration of the toolchain into Buildroot: find the main sysroot
# and the variant-specific sysroot, then copy the needed libraries to
@@ -194,4 +195,4 @@ $(STAMP_DIR)/ext-toolchain-installed: $(TOOLCHAIN_EXTERNAL_DEPENDENCIES)
if [ -L $${ARCH_SYSROOT_DIR}/lib64 ] ; then \
$(call create_lib64_symlinks) ; \
fi ; \
- touch $@
+ $(Q)touch $@
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-23 10:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-23 9:31 [Buildroot] [pull request] Pull request for branch for-2011.02/fix-external-toolchain Thomas Petazzoni
2010-12-23 9:31 ` [Buildroot] [PATCH 1/1] toolchain: add missing stamp file touch in external toolchain Thomas Petazzoni
2010-12-23 10:13 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox