From: Cyril Brulebois Date: Wed, 17 Nov 2010 15:16:56 +0000 (+0100) Subject: Fix argument quoting for AC_INIT. X-Git-Tag: 1.0_branch~399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7ee43c39d2370716a4d011afa8f5067eced9899;p=profile%2Fivi%2Fpixman.git Fix argument quoting for AC_INIT. One gets rid of this accordingly: | autoreconf -vfi | autoreconf: Entering directory `.' | autoreconf: configure.ac: not using Gettext | autoreconf: running: aclocal --force | configure.ac:61: warning: AC_INIT: not a literal: "pixman@lists.freedesktop.org" | autoreconf: configure.ac: tracing | configure.ac:61: warning: AC_INIT: not a literal: "pixman@lists.freedesktop.org" Signed-off-by: Cyril Brulebois --- diff --git a/configure.ac b/configure.ac index db1da21..147e1bf 100644 --- a/configure.ac +++ b/configure.ac @@ -58,7 +58,7 @@ m4_define([pixman_micro], 3) m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro]) -AC_INIT(pixman, pixman_version, "pixman@lists.freedesktop.org", pixman) +AC_INIT(pixman, pixman_version, [pixman@lists.freedesktop.org], pixman) AM_INIT_AUTOMAKE([foreign dist-bzip2]) # Suppress verbose compile lines