]> git.ipfire.org Git - pakfire.git/commitdiff
Enable verbose extraction of tarballs.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 20 Nov 2011 11:17:01 +0000 (12:17 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 20 Nov 2011 11:17:01 +0000 (12:17 +0100)
macros/build.macro
macros/constants.macro

index 74f8f04679369c67d9be6b9f36d64d44f57c3f74..b42207f84edb32ed546c688787b3a407a558f0a3 100644 (file)
@@ -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
index 5a2d93d807071cc5d897b65fe2f4aab0b415125e..87e42114e34806c0bd2ac7202893be333b234ef1 100644 (file)
@@ -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}"