diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-09 21:19:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-09 21:19:47 +0000 |
commit | bb05a9ad46cd8c743ccdda99578ca424073f7a4d (patch) | |
tree | ea4e25b4fb8714ca2bc89e634f5ba94845f50318 /package/grep | |
parent | bad642827254b85395c02e806a010e3c65cf551c (diff) | |
download | buildroot-novena-bb05a9ad46cd8c743ccdda99578ca424073f7a4d.tar.gz buildroot-novena-bb05a9ad46cd8c743ccdda99578ca424073f7a4d.zip |
Make the TAR_VERBOSITY option a bit more sane
Diffstat (limited to 'package/grep')
-rw-r--r-- | package/grep/grep.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/grep/grep.mk b/package/grep/grep.mk index ed061a8a3..6e909c9a8 100644 --- a/package/grep/grep.mk +++ b/package/grep/grep.mk @@ -17,9 +17,9 @@ grep-source: $(DL_DIR)/$(GNUGREP_SOURCE) $(GNUGREP_DIR)/.unpacked: $(DL_DIR)/$(GNUGREP_SOURCE) rm -rf $(GNUGREP_DIR).xxx - $(GNUGREP_CAT) $(DL_DIR)/$(GNUGREP_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f - + $(GNUGREP_CAT) $(DL_DIR)/$(GNUGREP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - mv $(GNUGREP_DIR) $(GNUGREP_DIR).xxx - $(GNUGREP_CAT) $(GNUGREP_DIR).xxx/grep_2.5.1.tar.gz | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f - + $(GNUGREP_CAT) $(GNUGREP_DIR).xxx/grep_2.5.1.tar.gz | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - rm -rf $(GNUGREP_DIR).xxx touch $(GNUGREP_DIR)/.unpacked |