This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via d2615b9c7d4ba3a83d6c1ec3430428a0aeaa6784 (commit) from ebb540ea95064456f29c5c2930000219c5f9d5ea (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit d2615b9c7d4ba3a83d6c1ec3430428a0aeaa6784 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Mar 20 16:58:12 2010 +0100
toolchain: Add ccache.
-----------------------------------------------------------------------
Summary of changes: pkgs/toolchain/ccache/ccache.nm | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) create mode 100644 pkgs/toolchain/ccache/ccache.nm
Difference in files: diff --git a/pkgs/toolchain/ccache/ccache.nm b/pkgs/toolchain/ccache/ccache.nm new file mode 100644 index 0000000..c83720d --- /dev/null +++ b/pkgs/toolchain/ccache/ccache.nm @@ -0,0 +1,20 @@ + +PKG_TOOLCHAIN_DEPS += gcc glibc zlib + +include ../../core/ccache/ccache.nm + +define STAGE_BUILD + cd $(DIR_APP) && \ + ./configure \ + --prefix=$(TOOLS_DIR) \ + + cd $(DIR_APP) && make $(PARALLELISMFLAGS) +endef + +define STAGE_INSTALL_CMDS + mkdir -pv $(TOOLS_DIR)/usr/ccache/bin + for i in gcc g++ cc c++; do \ + ln -svf ../../../bin/ccache $(TOOLS_DIR)/usr/ccache/bin/$${i}; \ + ln -svf ../../../bin/ccache $(TOOLS_DIR)/usr/ccache/bin/$(TARGET)-$${i}; \ + done +endef
hooks/post-receive -- IPFire 3.x development tree