# HG changeset patch # User Aleksej Bobylev # Date 1451138746 -7200 # Node ID d034a2d99e3a4ed744b8d517cf2844df2af66320 # Parent e4257a4c2eb305364ed1f0239df0b502e1683551 Modules 'install', 'remove': hide unresolved glib-compile-schemas warnings diff -r e4257a4c2eb3 -r d034a2d99e3a modules/install --- a/modules/install Mon Dec 21 01:45:15 2015 +0200 +++ b/modules/install Sat Dec 26 16:05:46 2015 +0200 @@ -544,7 +544,9 @@ # packages 'gtk+', 'gtk+3' [ -n "$uicon" ] && chroot "$root/" /usr/bin/gtk-update-icon-cache /usr/share/icons/hicolor # package 'glib' - [ -n "$uschm" ] && chroot "$root/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + # hide messages like next because they are unresolved (we may to patch glib to hide them, almost the same) + # warning: Schema '*' has path '*'. Paths starting with '/apps/', '/desktop/' or '/system/' are deprecated. + [ -n "$uschm" ] && chroot "$root/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas 2>&1 | fgrep -v '/apps/' # package 'gdk-pixbuf' [ -n "$upixb" ] && chroot "$root/" /usr/bin/gdk-pixbuf-query-loaders --update-cache # packages 'busybox', 'kmod', 'depmod' diff -r e4257a4c2eb3 -r d034a2d99e3a modules/remove --- a/modules/remove Mon Dec 21 01:45:15 2015 +0200 +++ b/modules/remove Sat Dec 26 16:05:46 2015 +0200 @@ -227,7 +227,9 @@ # packages 'gtk+', 'gtk+3' [ -n "$uicon" ] && chroot "$root/" /usr/bin/gtk-update-icon-cache /usr/share/icons/hicolor # package 'glib' -[ -n "$uschm" ] && chroot "$root/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas +# hide messages like next because they are unresolved (we may to patch glib to hide them, almost the same) +# warning: Schema '*' has path '*'. Paths starting with '/apps/', '/desktop/' or '/system/' are deprecated. +[ -n "$uschm" ] && chroot "$root/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas 2>&1 | fgrep -v '/apps/' # package 'gdk-pixbuf' [ -n "$upixb" ] && chroot "$root/" /usr/bin/gdk-pixbuf-query-loaders --update-cache # packages 'busybox', 'kmod', 'depmod'