From 6342c83201d5fd2acef0f3193f53b19f74b14c73 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Sun, 1 Oct 2006 15:17:52 +0000 Subject: - use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may not exist; Closes #971 Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e9d0ab8e2..49b0168a4 100644 --- a/Makefile +++ b/Makefile @@ -104,7 +104,7 @@ $(STAGING_DIR): $(TARGET_DIR): if [ -f "$(TARGET_SKELETON)" ] ; then \ - zcat $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \ + $(ZCAT) $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \ fi; if [ -d "$(TARGET_SKEL_DIR)" ] ; then \ cp -fa $(TARGET_SKEL_DIR)/* $(TARGET_DIR)/; \ -- cgit v1.2.3