From: Christian Persch Date: Tue, 31 Jan 2012 17:10:55 +0000 (+0100) Subject: resources: compiler: Fix entity processing of xml-stripblanks X-Git-Tag: 2.31.16~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb1dd2143dc6f5b5881b6d94abb7dd6f05137c76;p=platform%2Fupstream%2Fglib.git resources: compiler: Fix entity processing of xml-stripblanks Preserve entities instead of replacing them! Bug #669173. --- diff --git a/gio/glib-compile-resources.c b/gio/glib-compile-resources.c index 93938f8..c0f6d7b 100644 --- a/gio/glib-compile-resources.c +++ b/gio/glib-compile-resources.c @@ -273,7 +273,6 @@ end_element (GMarkupParseContext *context, argc = 0; argv[argc++] = (gchar *) xmllint; argv[argc++] = "--nonet"; - argv[argc++] = "--noent"; argv[argc++] = "--noblanks"; argv[argc++] = "--output"; argv[argc++] = tmp_file;