changeset 1101:28abe875c217

improved coding style
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 30 Aug 2010 10:19:55 +0200
parents ef9fcd8df707
children fa2a4aa042e3
files Makefile
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Mon Aug 30 01:58:37 2010 +0200
+++ b/Makefile	Mon Aug 30 10:19:55 2010 +0200
@@ -32,11 +32,11 @@
 include $(TOP_DIR)/src/*.mk
 
 UNPACK_ARCHIVE = \
-    $(if $(filter %.tgz,    $(1)),tar xzf '$(1)', \
-    $(if $(filter %.tar.gz, $(1)),tar xzf '$(1)', \
-    $(if $(filter %.tar.bz2,$(1)),tar xjf '$(1)', \
-    $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | tar -x, \
-    $(if $(filter %.zip,    $(1)),unzip -q '$(1)', \
+    $(if $(filter %.tgz,     $(1)),tar xzf '$(1)', \
+    $(if $(filter %.tar.gz,  $(1)),tar xzf '$(1)', \
+    $(if $(filter %.tar.bz2, $(1)),tar xjf '$(1)', \
+    $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | tar x, \
+    $(if $(filter %.zip,     $(1)),unzip -q '$(1)', \
     $(error Unknown archive format: $(1)))))))
 
 UNPACK_PKG_ARCHIVE = \