diff options
author | Michael Roth <mroth@nessie.de> | 2009-09-23 01:30:00 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-09-23 09:15:27 +0200 |
commit | cb5710c538fce01f4875a64e6de4b37a7718005b (patch) | |
tree | c1ebe4a0dbbbe4c5a24f7cc765854b90e3a585df /package/mpfr/mpfr.mk | |
parent | be695dcc3c9afd6836b90151301b6322de5dfcd8 (diff) |
rename TOOL_BUILD_DIR to TOOLCHAIN_DIR
To reflect the new output directory hierachy rename the Makefile variable
TOOL_BUILD_DIR to TOOLCHAIN_DIR.
Signed-off-by: Michael Roth <mroth@nessie.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/mpfr/mpfr.mk')
-rw-r--r-- | package/mpfr/mpfr.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/mpfr/mpfr.mk b/package/mpfr/mpfr.mk index b2787ec07..4bd100cff 100644 --- a/package/mpfr/mpfr.mk +++ b/package/mpfr/mpfr.mk @@ -9,7 +9,7 @@ MPFR_PATCH_FILE:=mpfr-$(MPFR_VERSION).patch MPFR_SOURCE:=mpfr-$(MPFR_VERSION).tar.bz2 MPFR_CAT:=$(BZCAT) MPFR_SITE:=http://www.mpfr.org/mpfr-$(MPFR_VERSION) -MPFR_DIR:=$(TOOL_BUILD_DIR)/mpfr-$(MPFR_VERSION) +MPFR_DIR:=$(TOOLCHAIN_DIR)/mpfr-$(MPFR_VERSION) MPFR_TARGET_DIR:=$(BUILD_DIR)/mpfr-$(MPFR_VERSION) MPFR_BINARY:=libmpfr$(LIBTGTEXT) MPFR_HOST_BINARY:=libmpfr$(HOST_LIBEXT) @@ -30,7 +30,7 @@ $(DL_DIR)/$(MPFR_SOURCE): $(call DOWNLOAD,$(MPFR_SITE),$(MPFR_SOURCE)) $(MPFR_DIR)/.unpacked: $(DL_DIR)/$(MPFR_SOURCE) $(MPFR_PATCH_SOURCE) - $(MPFR_CAT) $(DL_DIR)/$(MPFR_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) - + $(MPFR_CAT) $(DL_DIR)/$(MPFR_SOURCE) | tar -C $(TOOLCHAIN_DIR) $(TAR_OPTIONS) - toolchain/patch-kernel.sh $(MPFR_DIR) package/mpfr/ \*.patch $(CONFIG_UPDATE) $(@D) ifneq ($(MPFR_PATCH),) @@ -86,8 +86,8 @@ libmpfr-clean: libmpfr-dirclean: rm -rf $(MPFR_TARGET_DIR) -MPFR_DIR2:=$(TOOL_BUILD_DIR)/mpfr-$(MPFR_VERSION)-host -MPFR_HOST_DIR:=$(TOOL_BUILD_DIR)/mpfr +MPFR_DIR2:=$(TOOLCHAIN_DIR)/mpfr-$(MPFR_VERSION)-host +MPFR_HOST_DIR:=$(TOOLCHAIN_DIR)/mpfr $(MPFR_DIR2)/.configured: $(MPFR_DIR)/.unpacked $(GMP_HOST_DIR)/lib/$(GMP_HOST_BINARY) mkdir -p $(MPFR_DIR2) (cd $(MPFR_DIR2); \ |