diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-15 21:54:11 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-15 21:54:11 +0000 |
commit | 0f9c5b1129c5b8d5fb08d95f948f49a603cf7411 (patch) | |
tree | 4e61c7748e6a10d8d6d09d16d327f89c3a90b0fc /package/gzip/gzip.mk | |
parent | f54e958645c0388408da807c03493e2c9613f4f9 (diff) | |
download | buildroot-novena-0f9c5b1129c5b8d5fb08d95f948f49a603cf7411.tar.gz buildroot-novena-0f9c5b1129c5b8d5fb08d95f948f49a603cf7411.zip |
Define HOSTLN to allow gzip to build for non-x86 target
Diffstat (limited to 'package/gzip/gzip.mk')
-rw-r--r-- | package/gzip/gzip.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/gzip/gzip.mk b/package/gzip/gzip.mk index 9f4fb8fc4..9503dd029 100644 --- a/package/gzip/gzip.mk +++ b/package/gzip/gzip.mk @@ -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) |