From: Ulf Samuelsson Date: Thu, 12 Jul 2007 15:28:58 +0000 (-0000) Subject: Change HOSTNAME to TARGET_HOSTNAME to avoid superseeding build host HOSTNAME X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e327a1f0a76db118ef1e86041c91cee061675182;p=buildroot.git Change HOSTNAME to TARGET_HOSTNAME to avoid superseeding build host HOSTNAME --- diff --git a/Makefile b/Makefile index d32807265f..9ddf17cc62 100644 --- a/Makefile +++ b/Makefile @@ -156,9 +156,9 @@ else TARGETS:=uclibc endif -PROJECT:=$(strip $(subst ",, $(BR2_PROJECT))) -HOSTNAME:=$(strip $(subst ",, $(BR2_HOSTNAME))) -BANNER:=$(strip $(subst ",, $(BR2_BANNER))) +PROJECT:=$(strip $(subst ",,$(BR2_PROJECT))) +TARGET_HOSTNAME:=$(strip $(subst ",,$(BR2_HOSTNAME))) +BANNER:=$(strip $(subst ",,$(BR2_BANNER))) include toolchain/Makefile.in @@ -238,7 +238,7 @@ $(TARGET_DIR)/etc/issue: $(TARGET_DIR) .config echo "$(BANNER)" >> $(TARGET_DIR)/etc/issue $(TARGET_DIR)/etc/hostname: $(TARGET_DIR) .config - echo "$(HOSTNAME)" > $(TARGET_DIR)/etc/hostname + echo "$(TARGET_HOSTNAME)" > $(TARGET_DIR)/etc/hostname source: $(TARGETS_SOURCE) $(HOST_SOURCE)