diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2010-12-04 21:40:49 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2010-12-04 21:40:49 +0100 |
commit | 39fb00c188032075a0a8298e333e6914bd88e53a (patch) | |
tree | ccb10a0b7064862bcce144316b9392614d355b2d /recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch | |
parent | 1857df74ac9bfec16d0274fe972fda7bb1f99e6b (diff) | |
download | meta-openembedded-39fb00c188032075a0a8298e333e6914bd88e53a.tar.gz |
meta-openembedded: import pixman 0.21.2 from OE
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch')
-rw-r--r-- | recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch b/recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch new file mode 100644 index 0000000000..ebf6eafb0d --- /dev/null +++ b/recipes-graphics/xorg-lib/pixman-0.21.2/0002-Fix-argument-quoting-for-AC_INIT.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From e7ee43c39d2370716a4d011afa8f5067eced9899 Mon Sep 17 00:00:00 2001 | ||
2 | From: Cyril Brulebois <kibi@debian.org> | ||
3 | Date: Wed, 17 Nov 2010 16:16:56 +0100 | ||
4 | Subject: [PATCH 02/24] Fix argument quoting for AC_INIT. | ||
5 | |||
6 | One gets rid of this accordingly: | ||
7 | | autoreconf -vfi | ||
8 | | autoreconf: Entering directory `.' | ||
9 | | autoreconf: configure.ac: not using Gettext | ||
10 | | autoreconf: running: aclocal --force | ||
11 | | configure.ac:61: warning: AC_INIT: not a literal: "pixman@lists.freedesktop.org" | ||
12 | | autoreconf: configure.ac: tracing | ||
13 | | configure.ac:61: warning: AC_INIT: not a literal: "pixman@lists.freedesktop.org" | ||
14 | |||
15 | Signed-off-by: Cyril Brulebois <kibi@debian.org> | ||
16 | --- | ||
17 | configure.ac | 2 +- | ||
18 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
19 | |||
20 | diff --git a/configure.ac b/configure.ac | ||
21 | index db1da21..147e1bf 100644 | ||
22 | --- a/configure.ac | ||
23 | +++ b/configure.ac | ||
24 | @@ -58,7 +58,7 @@ m4_define([pixman_micro], 3) | ||
25 | |||
26 | m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro]) | ||
27 | |||
28 | -AC_INIT(pixman, pixman_version, "pixman@lists.freedesktop.org", pixman) | ||
29 | +AC_INIT(pixman, pixman_version, [pixman@lists.freedesktop.org], pixman) | ||
30 | AM_INIT_AUTOMAKE([foreign dist-bzip2]) | ||
31 | |||
32 | # Suppress verbose compile lines | ||
33 | -- | ||
34 | 1.6.6.1 | ||
35 | |||