From f080b2425a2ce487ee94cc4fa7805f3259ac5c3c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Thu, 17 Nov 2005 01:27:00 +0000 Subject: [PATCH] use $UNTAR instead of hard-coded tar in rule. --- contrib/tools/xmlformat/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/tools/xmlformat/Makefile b/contrib/tools/xmlformat/Makefile index 1b998fcdc..4489c4735 100644 --- a/contrib/tools/xmlformat/Makefile +++ b/contrib/tools/xmlformat/Makefile @@ -8,10 +8,13 @@ EXTRACTED_DIR ?= $(basename $(basename $(DOWNLOAD_FILENAME))) WGET ?= wget WGET_OPTS ?= +UNTAR ?= tar +UNTAR_OPTS ?= xvfz + all: $(EXTRACTED_DIR) $(EXTRACTED_DIR): $(DOWNLOAD_FILENAME) - tar xvfz $< + $(UNTAR) $(UNTAR_OPTS) $< $(DOWNLOAD_FILENAME): $(WGET) $(DOWNLOAD_URL)/$@ -- 2.40.0