pixman: Branch 'master'

Søren Sandmann Pedersen sandmann at kemper.freedesktop.org
Fri Nov 19 11:05:41 PST 2010


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e7ee43c39d2370716a4d011afa8f5067eced9899
Author: Cyril Brulebois <kibi at debian.org>
Date:   Wed Nov 17 16:16:56 2010 +0100

    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 at lists.freedesktop.org"
    | autoreconf: configure.ac: tracing
    | configure.ac:61: warning: AC_INIT: not a literal: "pixman at lists.freedesktop.org"
    
    Signed-off-by: Cyril Brulebois <kibi at debian.org>

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 at lists.freedesktop.org", pixman)
+AC_INIT(pixman, pixman_version, [pixman at lists.freedesktop.org], pixman)
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
 
 # Suppress verbose compile lines


More information about the xorg-commit mailing list