lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [6503] Suppress voluminous and uninteresting 'unzip' outpu


From: Greg Chicares
Subject: [lmi-commits] [6503] Suppress voluminous and uninteresting 'unzip' output
Date: Wed, 10 Feb 2016 18:28:32 +0000

Revision: 6503
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6503
Author:   chicares
Date:     2016-02-10 18:27:50 +0000 (Wed, 10 Feb 2016)
Log Message:
-----------
Suppress voluminous and uninteresting 'unzip' output

Modified Paths:
--------------
    lmi/trunk/install_miscellanea.make
    lmi/trunk/install_wx.make
    lmi/trunk/install_wxpdfdoc.make

Modified: lmi/trunk/install_miscellanea.make
===================================================================
--- lmi/trunk/install_miscellanea.make  2016-02-10 18:16:09 UTC (rev 6502)
+++ lmi/trunk/install_miscellanea.make  2016-02-10 18:27:50 UTC (rev 6503)
@@ -254,6 +254,8 @@
 %.tar.bz2: TARFLAGS += --bzip2
 %.tar.gz:  TARFLAGS += --gzip
 
+UNZIPFLAGS := -q
+
 WGETFLAGS :=
 
 .PHONY: %.tar.bz2 %.tar.gz
@@ -272,7 +274,7 @@
 %.zip:
        cd $(cache_dir) && [ -e $@ ] || $(WGET) $(WGETFLAGS) $(address@hidden)
        $(ECHO) "$(address@hidden) *$(cache_dir)/$@" | $(MD5SUM) --check
-       -$(UNZIP) $(cache_dir)/$@ -d scratch
+       -$(UNZIP) $(UNZIPFLAGS) $(cache_dir)/$@ -d scratch
 
 # Maintenance 
##################################################################
 

Modified: lmi/trunk/install_wx.make
===================================================================
--- lmi/trunk/install_wx.make   2016-02-10 18:16:09 UTC (rev 6502)
+++ lmi/trunk/install_wx.make   2016-02-10 18:27:50 UTC (rev 6503)
@@ -169,12 +169,14 @@
        @$(MKDIR) --parents $(cache_dir)
        @$(MKDIR) --parents $(build_dir)
 
-WGETFLAGS :=
-
 TARFLAGS := --keep-old-files
 %.tar.bz2: TARFLAGS += --bzip2
 %.tar.gz:  TARFLAGS += --gzip
 
+UNZIPFLAGS := -q
+
+WGETFLAGS :=
+
 .PHONY: %.tar.bz2 %.tar.gz
 %.tar.bz2 %.tar.gz:
        cd $(cache_dir) && [ -e $@ ] || $(WGET) $(WGETFLAGS) $(address@hidden)
@@ -192,7 +194,7 @@
 %.zip:
        cd $(cache_dir) && [ -e $@ ] || $(WGET) $(WGETFLAGS) 
--output-document=$@ $(address@hidden)
        cd $(cache_dir) && $(ECHO) "$(address@hidden) *$@" | $(MD5SUM) --check
-       -$(UNZIP) $(cache_dir)/$@ -d $(wx_dir)
+       -$(UNZIP) $(UNZIPFLAGS) $(cache_dir)/$@ -d $(wx_dir)
 
 .PHONY: wx
 wx:

Modified: lmi/trunk/install_wxpdfdoc.make
===================================================================
--- lmi/trunk/install_wxpdfdoc.make     2016-02-10 18:16:09 UTC (rev 6502)
+++ lmi/trunk/install_wxpdfdoc.make     2016-02-10 18:27:50 UTC (rev 6503)
@@ -88,8 +88,6 @@
 UNZIP  := unzip
 WGET   := wget
 
-WGETFLAGS :=
-
 # Targets 
######################################################################
 
 .PHONY: all
@@ -102,11 +100,15 @@
        @$(MKDIR) --parents $(cache_dir)
        @$(MKDIR) --parents $(wxpdfdoc_dir)
 
+UNZIPFLAGS := -q
+
+WGETFLAGS :=
+
 .PHONY: %.zip
 %.zip: initial_setup
        cd $(cache_dir) && [ -e $@ ] || $(WGET) $(WGETFLAGS) 
--output-document=$@ $(address@hidden)
        cd $(cache_dir) && $(ECHO) "$(address@hidden) *$@" | $(MD5SUM) --check
-       -$(UNZIP) $(cache_dir)/$@ -d $(wxpdfdoc_dir)
+       -$(UNZIP) $(UNZIPFLAGS) $(cache_dir)/$@ -d $(wxpdfdoc_dir)
 
 .PHONY: wxpdfdoc
 wxpdfdoc: $(wxpdfdoc_archive)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]