diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-08-04 22:28:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-08-04 23:55:28 +0200 |
commit | 27c667c782d90c43fb6148134feb207307674019 (patch) | |
tree | 70b62a87a37fa8dd0ecfc4fcfebb12713ec73372 /package/gzip/gzip.mk | |
parent | 5b72dda69f72e1953dfc7987dd1b418e1afe79a4 (diff) | |
download | buildroot-novena-27c667c782d90c43fb6148134feb207307674019.tar.gz buildroot-novena-27c667c782d90c43fb6148134feb207307674019.zip |
gzip: add patch to fix glibc build
Recent glibc versions introduced a futimens() function, that gzip
already implemented. So waiting for a proper usage of this function in
gzip, we rename the gzip internal function to gz_futimens().
Patch inspired by
http://lists.pld-linux.org/mailman/pipermail/pld-cvs-commit/Week-of-Mon-20070514/155476.html
Fixes bug #537
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gzip/gzip.mk')
-rw-r--r-- | package/gzip/gzip.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/gzip/gzip.mk b/package/gzip/gzip.mk index beffe9d2e..84031613f 100644 --- a/package/gzip/gzip.mk +++ b/package/gzip/gzip.mk @@ -18,6 +18,7 @@ gzip-source: $(DL_DIR)/$(GZIP_SOURCE) $(GZIP_DIR)/.unpacked: $(DL_DIR)/$(GZIP_SOURCE) $(GZIP_CAT) $(DL_DIR)/$(GZIP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + toolchain/patch-kernel.sh $(GZIP_DIR) package/gzip gzip\*.patch touch $(GZIP_DIR)/.unpacked $(GZIP_DIR)/.configured: $(GZIP_DIR)/.unpacked |