diff options
| author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-12-28 10:11:05 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-03 12:14:32 +0000 |
| commit | 5365bd6c0fa86cfd81e4633b472de00b1b2ef751 (patch) | |
| tree | b539c191a99a0f0aceacc854427a4000f2babf21 /meta/recipes-core/jpeg/jpeg-8c | |
| parent | b33475730be59c50296dac05381914e11a927167 (diff) | |
| download | poky-5365bd6c0fa86cfd81e4633b472de00b1b2ef751.tar.gz | |
jpeg: fix configure with automake 1.11.2
The support for automatic de-ANSI-fication has been deprecated in
automake 1.11.2, and will be removed altogether in automake 1.12
This avoids this error:
| configure.ac:24: automatic de-ANSI-fication support is deprecated
| autoreconf: automake failed with exit status: 1
| ERROR: autoreconf execution failed.
NOTE: package jpeg-native-8c-r2: task do_configure: Failed
(From OE-Core rev: 893ce9db79a5c4cca8a6b6ed6a9cec81777aba2f)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/jpeg/jpeg-8c')
| -rw-r--r-- | meta/recipes-core/jpeg/jpeg-8c/fix_for_automake_1.11.2.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-core/jpeg/jpeg-8c/fix_for_automake_1.11.2.patch b/meta/recipes-core/jpeg/jpeg-8c/fix_for_automake_1.11.2.patch new file mode 100644 index 0000000000..c0d7f3e891 --- /dev/null +++ b/meta/recipes-core/jpeg/jpeg-8c/fix_for_automake_1.11.2.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | Upstream-Status: Pending | ||
| 2 | |||
| 3 | The support for automatic de-ANSI-fication has been deprecated in | ||
| 4 | automake 1.11.2, and will be removed altogether in automake 1.12 | ||
| 5 | |||
| 6 | This avoids this error: | ||
| 7 | | configure.ac:24: automatic de-ANSI-fication support is deprecated | ||
| 8 | | autoreconf: automake failed with exit status: 1 | ||
| 9 | | ERROR: autoreconf execution failed. | ||
| 10 | NOTE: package jpeg-native-8c-r2: task do_configure: Failed | ||
| 11 | |||
| 12 | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
| 13 | 2011/12/28 | ||
| 14 | |||
| 15 | |||
| 16 | Index: jpeg-8c/configure.ac | ||
| 17 | =================================================================== | ||
| 18 | --- jpeg-8c.orig/configure.ac | ||
| 19 | +++ jpeg-8c/configure.ac | ||
| 20 | @@ -21,7 +21,7 @@ AC_CANONICAL_TARGET | ||
| 21 | |||
| 22 | # Initialize Automake | ||
| 23 | # Don't require all the GNU mandated files | ||
| 24 | -AM_INIT_AUTOMAKE([-Wall -Werror ansi2knr no-dist foreign]) | ||
| 25 | +AM_INIT_AUTOMAKE([-Wall -Werror no-dist foreign]) | ||
| 26 | |||
| 27 | # Make --enable-silent-rules the default. | ||
| 28 | # To get verbose build output you may configure | ||
