From: Michael Tremer Date: Sun, 20 Nov 2011 11:17:01 +0000 (+0100) Subject: Enable verbose extraction of tarballs. X-Git-Tag: 0.9.18~14^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce5f16efc162ac44e9663b189b3fff496f986e55;p=pakfire.git Enable verbose extraction of tarballs. --- diff --git a/macros/build.macro b/macros/build.macro index 74f8f0467..b42207f84 100644 --- a/macros/build.macro +++ b/macros/build.macro @@ -1,14 +1,12 @@ def MACRO_EXTRACT_TARBALL - set +x for source in %{sources}; do %{MACRO_EXTRACT} %{DIR_DL}/${source} || exit 1 done unset source [ -d "%{DIR_APP}" ] && cd %{DIR_APP} - set -x end def MACRO_INSTALL_FILES diff --git a/macros/constants.macro b/macros/constants.macro index 5a2d93d80..87e42114e 100644 --- a/macros/constants.macro +++ b/macros/constants.macro @@ -21,7 +21,7 @@ sources = %{thisapp}.tar.gz # Macro to extract tarballs. # Guesses the compression type automatically. -MACRO_EXTRACT = tar xaf +MACRO_EXTRACT = tar xvaf MACRO_PATCHES patches="%{patches}"