/pidgin/main: 843aba5973db: Don't fail when there are no warning...

Tomasz Wasilczyk twasilczyk at pidgin.im
Tue Feb 4 19:37:52 EST 2014


Changeset: 843aba5973db69b6d5b3856d8c1d64a7ddce86ea
Author:	 Tomasz Wasilczyk <twasilczyk at pidgin.im>
Date:	 2014-02-05 01:37 +0100
Branch:	 default
URL: https://hg.pidgin.im/pidgin/main/rev/843aba5973db

Description:

Don't fail when there are no warnings for gconf during the install

diffstat:

 libpurple/gconf/Makefile.am |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff --git a/libpurple/gconf/Makefile.am b/libpurple/gconf/Makefile.am
--- a/libpurple/gconf/Makefile.am
+++ b/libpurple/gconf/Makefile.am
@@ -13,7 +13,7 @@ schema_DATA = $(schema_in_files:.schemas
 if GCONF_SCHEMAS_INSTALL
 install-data-local:
 	LANG=en GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA) 2>&1 | \
-		grep -v "^WARNING: failed to install schema" | grep -v "^Attached schema" 1>&2
+		grep -v "^WARNING: failed to install schema" | grep -v "^Attached schema" 1>&2 || true
 else
 install-data-local:
 endif #GCONF_SCHEMAS_INSTALL



More information about the Commits mailing list