[gcr] Silence glib-compile-schemas output

Kalev Lember kalev at fedoraproject.org
Tue Apr 24 14:28:48 UTC 2012


commit bd73ff319c351831415119ceab3cb48dd956f587
Author: Kalev Lember <kalevlember at gmail.com>
Date:   Tue Apr 24 17:27:37 2012 +0300

    Silence glib-compile-schemas output
    
    Redirect it to /dev/null; end users aren't supposed to see the warnings
    generated by glib-compile-schemas.

 gcr.spec |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/gcr.spec b/gcr.spec
index a00e4a0..ae553d2 100644
--- a/gcr.spec
+++ b/gcr.spec
@@ -1,6 +1,6 @@
 Name:           gcr
 Version:        3.4.1
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        A library for bits of crypto UI and parsing
 
 Group:          Development/Libraries
@@ -64,7 +64,7 @@ update-desktop-database &> /dev/null || :
 if [ $1 -eq 0 ]; then
   touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
   gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
-  glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
+  glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || :
 fi
 
 
@@ -76,7 +76,7 @@ update-desktop-database &> /dev/null || :
 
 %posttrans
 gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
-glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
+glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || :
 
 
 %files -f %{name}.lang
@@ -117,6 +117,9 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
 
 
 %changelog
+* Tue Apr 24 2012 Kalev Lember <kalevlember at gmail.com> - 3.4.1-2
+- Silence glib-compile-schemas output
+
 * Mon Apr 16 2012 Richard Hughes <hughsient at gmail.com> - 3.4.1-1
 - Update to 3.4.1
 


More information about the scm-commits mailing list