From: Matthias Clasen Date: Fri, 10 Oct 2008 04:44:53 +0000 (+0000) Subject: Bug 552861 – glib-2.0.m4 calls system(3) without storing its result X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=65ac7d4034a47e8a5541405850f7ade9700dda92;p=dana%2Fcg-glib.git Bug 552861 – glib-2.0.m4 calls system(3) without storing its result 2008-10-10 Matthias Clasen Bug 552861 – glib-2.0.m4 calls system(3) without storing its result * m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy. Patch by Andreas Köhler svn path=/trunk/; revision=7584 --- diff --git a/ChangeLog b/ChangeLog index ff93dc8c..23f4973b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-10-10 Matthias Clasen + + Bug 552861 – glib-2.0.m4 calls system(3) without storing its result + + * m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy. + Patch by Andreas Köhler + 2008-10-08 Christian Persch Bug 555313 – GFileAttribute boxed type get_type function should diff --git a/m4macros/glib-2.0.m4 b/m4macros/glib-2.0.m4 index be79a462..c620123c 100644 --- a/m4macros/glib-2.0.m4 +++ b/m4macros/glib-2.0.m4 @@ -93,8 +93,9 @@ main () { int major, minor, micro; char *tmp_version; + int ignored; - system ("touch conf.glibtest"); + ignored = system ("touch conf.glibtest"); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_glib_version");