From 770c2c5222a34cfc843e5c15f2a14b92fdd80cac Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 2 Nov 2017 15:37:27 +0000 Subject: [PATCH 1/1] wget: Update file extension Upstream does not distribute XZ compressed tarballs any more Signed-off-by: Michael Tremer --- lfs/wget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/wget b/lfs/wget index 2c750bf653..774928bdcb 100644 --- a/lfs/wget +++ b/lfs/wget @@ -27,7 +27,7 @@ include Config VER = 1.19.2 THISAPP = wget-$(VER) -DL_FILE = $(THISAPP).tar.xz +DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) @@ -69,7 +69,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./configure \ --prefix=/usr \ -- 2.39.2