From: Bernhard Reutner-Fischer Date: Tue, 21 Aug 2007 17:14:56 +0000 (-0000) Subject: - move the PROJECT variable setting to a more sensible place X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e3c369df8a895f18ceaaa31e8dc09a5c46a422d;p=buildroot.git - move the PROJECT variable setting to a more sensible place --- diff --git a/package/Makefile.in b/package/Makefile.in index e3d7f83012..44a32d8c9f 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -95,12 +95,6 @@ endif # All non-configurable packages should be built in BUILD_DIR BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX) -# All configurable packages (like Busybox,Linux etc) should be built in PROJECT_BUILD_DIR -PROJECT_BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)project_build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)/$(PROJECT) -BINARIES_DIR:=$(BASE_DIR)/binaries/$(PROJECT) -TARGET_DIR:=$(PROJECT_BUILD_DIR)/root - - GNU_TARGET_SUFFIX:=-$(strip $(subst ",, $(BR2_GNU_TARGET_SUFFIX))) #")) diff --git a/project/Makefile.in b/project/Makefile.in index b90f312673..2e8ee1b22d 100644 --- a/project/Makefile.in +++ b/project/Makefile.in @@ -4,3 +4,9 @@ TARGET_HOSTNAME:=$(strip $(subst ",,$(BR2_HOSTNAME))) #")) BANNER:=$(strip $(subst ",,$(BR2_BANNER))) #")) + +# All configurable packages (like Busybox,Linux etc) should be built +# in PROJECT_BUILD_DIR +PROJECT_BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)project_build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)/$(PROJECT) +BINARIES_DIR:=$(BASE_DIR)/binaries/$(PROJECT) +TARGET_DIR:=$(PROJECT_BUILD_DIR)/root