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 /toolchain/Makefile.in | |
parent | be695dcc3c9afd6836b90151301b6322de5dfcd8 (diff) | |
download | buildroot-novena-cb5710c538fce01f4875a64e6de4b37a7718005b.tar.gz buildroot-novena-cb5710c538fce01f4875a64e6de4b37a7718005b.zip |
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 'toolchain/Makefile.in')
-rw-r--r-- | toolchain/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/Makefile.in b/toolchain/Makefile.in index d312b5642..db1a87a0b 100644 --- a/toolchain/Makefile.in +++ b/toolchain/Makefile.in @@ -21,7 +21,7 @@ ifeq ($(BR2_TOOLCHAIN_SYSROOT),y) BR2_SYSROOT_PREFIX=# nothing, straight into /usr BR2_SYSROOT_STAGING_DESTDIR=DESTDIR=$(STAGING_DIR)/ BR2_SYSROOT_TARGET_DESTDIR=DESTDIR=$(TARGET_DIR)/ -BR2_CONFIGURE_DEVEL_SYSROOT=--with-sysroot=$(TOOL_BUILD_DIR)/uClibc_dev/ +BR2_CONFIGURE_DEVEL_SYSROOT=--with-sysroot=$(TOOLCHAIN_DIR)/uClibc_dev/ BR2_CONFIGURE_STAGING_SYSROOT=--with-sysroot=$(STAGING_DIR) BR2_CONFIGURE_BUILD_TOOLS=--with-build-time-tools=$(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin BR2_SYSROOT=--sysroot=$(STAGING_DIR)/ @@ -30,7 +30,7 @@ else BR2_SYSROOT_PREFIX=$(STAGING_DIR) BR2_SYSROOT_STAGING_DESTDIR=# nothing BR2_SYSROOT_TARGET_DESTDIR=# nothing -BR2_CONFIGURE_DEVEL_SYSROOT=--with-sysroot=$(TOOL_BUILD_DIR)/uClibc_dev/ +BR2_CONFIGURE_DEVEL_SYSROOT=--with-sysroot=$(TOOLCHAIN_DIR)/uClibc_dev/ BR2_CONFIGURE_STAGING_SYSROOT=# nothing BR2_CONFIGURE_BUILD_TOOLS=# nothing BR2_SYSROOT=# nothing |