Define HOSTLN to allow gzip to build for non-x86 target

This commit is contained in:
Ulf Samuelsson 2007-07-15 21:54:11 +00:00
parent f54e958645
commit 0f9c5b1129
2 changed files with 9 additions and 5 deletions

View File

@ -79,11 +79,15 @@ endif
ifndef HOSTLD
HOSTLD:=ld
endif
ifndef HOSTLN
HOSTLN:=ln
endif
HOSTAR :=$(shell $(CONFIG_SHELL) -c "which $(HOSTAR)" || type -p $(HOSTAR) || echo ar)
HOSTAS :=$(shell $(CONFIG_SHELL) -c "which $(HOSTAS)" || type -p $(HOSTAS) || echo as)
HOSTCC :=$(shell $(CONFIG_SHELL) -c "which $(HOSTCC)" || type -p $(HOSTCC) || echo gcc)
HOSTCXX:=$(shell $(CONFIG_SHELL) -c "which $(HOSTCXX)" || type -p $(HOSTCXX) || echo g++)
HOSTLD :=$(shell $(CONFIG_SHELL) -c "which $(HOSTLD)" || type -p $(HOSTLD) || echo ld)
HOSTLN :=$(shell $(CONFIG_SHELL) -c "which $(HOSTLN)" || type -p $(HOSTLN) || echo ln)
ifndef CFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD:=-g -O2
endif

View File

@ -53,11 +53,11 @@ $(GZIP_TARGET_BINARY): $(GZIP_BINARY)
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
(cd $(TARGET_DIR)/bin; \
ln -snf gzip gunzip; \
ln -snf gzip zcat; \
ln -snf zdiff zcmp; \
ln -snf zgrep zegrep; \
ln -snf zgrep zfgrep;)
$(HOSTLN) -snf gzip gunzip; \
$(HOSTLN) -snf gzip zcat; \
$(HOSTLN) -snf zdiff zcmp; \
$(HOSTLN) -snf zgrep zegrep; \
$(HOSTLN) -snf zgrep zfgrep;)
gzip: uclibc $(GZIP_TARGET_BINARY)