Commit 3a7b4883 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

use $(TAR_VERBOSITY)

parent 1f41bb77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ $(DL_DIR)/$(AUTOCONF_SOURCE):
autoconf-source: $(DL_DIR)/$(AUTOCONF_SOURCE)

$(AUTOCONF_DIR)/.unpacked: $(DL_DIR)/$(AUTOCONF_SOURCE)
	$(AUTOCONF_CAT) $(DL_DIR)/$(AUTOCONF_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	$(AUTOCONF_CAT) $(DL_DIR)/$(AUTOCONF_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f -
	touch $(AUTOCONF_DIR)/.unpacked

$(AUTOCONF_DIR)/.configured: $(AUTOCONF_DIR)/.unpacked
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ $(DL_DIR)/$(AUTOMAKE_SOURCE):
automake-source: $(DL_DIR)/$(AUTOMAKE_SOURCE)

$(AUTOMAKE_DIR)/.unpacked: $(DL_DIR)/$(AUTOMAKE_SOURCE)
	$(AUTOMAKE_CAT) $(DL_DIR)/$(AUTOMAKE_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	$(AUTOMAKE_CAT) $(DL_DIR)/$(AUTOMAKE_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f -
	touch $(AUTOMAKE_DIR)/.unpacked

$(AUTOMAKE_DIR)/.configured: $(AUTOMAKE_DIR)/.unpacked
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ $(DL_DIR)/$(BASH_SOURCE):
bash-source: $(DL_DIR)/$(BASH_SOURCE)

$(BASH_DIR)/.unpacked: $(DL_DIR)/$(BASH_SOURCE)
	$(BASH_CAT) $(DL_DIR)/$(BASH_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	$(BASH_CAT) $(DL_DIR)/$(BASH_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f -
	# This is broken when -lintl is added to LIBS
	$(SED) 's,LIBS_FOR_BUILD =.*,LIBS_FOR_BUILD =,g' \
		$(BASH_DIR)/builtins/Makefile.in
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ $(DL_DIR)/$(DB_SOURCE):
berkeleydb-source: $(DL_DIR)/$(DB_SOURCE)

$(DB_DIR)/.dist: $(DL_DIR)/$(DB_SOURCE)
	zcat $(DL_DIR)/$(DB_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	zcat $(DL_DIR)/$(DB_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f -
	touch  $(DB_DIR)/.dist

$(DB_DIR)/.configured: $(DB_DIR)/.dist
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ $(DL_DIR)/$(BISON_SOURCE):
bison-source: $(DL_DIR)/$(BISON_SOURCE)

$(BISON_DIR)/.unpacked: $(DL_DIR)/$(BISON_SOURCE)
	$(BISON_CAT) $(DL_DIR)/$(BISON_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	$(BISON_CAT) $(DL_DIR)/$(BISON_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f -
	touch $(BISON_DIR)/.unpacked

$(BISON_DIR)/.configured: $(BISON_DIR)/.unpacked
Loading