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/ncurses | |
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/ncurses')
-rw-r--r-- | package/ncurses/ncurses.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index f6ae27720..f3fb02a7c 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -5,7 +5,7 @@ # ############################################################# # Copyright (C) 2002 by Ken Restivo <ken@246gt.com> -# $Id: ncurses.mk,v 1.4 2004/10/09 19:26:10 vapier Exp $ +# $Id: ncurses.mk,v 1.5 2004/10/09 21:19:18 andersen Exp $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library General Public License as @@ -31,7 +31,7 @@ $(DL_DIR)/$(NCURSES_SOURCE): $(WGET) -P $(DL_DIR) $(NCURSES_SITE)/$(NCURSES_SOURCE) $(NCURSES_DIR)/.dist: $(DL_DIR)/$(NCURSES_SOURCE) - gunzip -c $(DL_DIR)/$(NCURSES_SOURCE) | tar -C $(BUILD_DIR) -x$(TAR_VERBOSITY)f - + gunzip -c $(DL_DIR)/$(NCURSES_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - #use the local tic and not whatever the build system was going to find. $(SED) 's~\$$srcdir/shlib tic\$$suffix~/usr/bin/tic~' \ $(NCURSES_DIR)/misc/run_tic.in |