diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-02 12:24:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-02 12:30:01 +0000 |
commit | 8ba70a1c28a4e0ee73db5308b38abc923b0be44d (patch) | |
tree | 0ed9bff8e4bd70766c81dbb559d32781bdd93ce8 /recipes-devtools/make/make-3.81 | |
download | meta-gplv2-8ba70a1c28a4e0ee73db5308b38abc923b0be44d.tar.gz |
Create meta-gplv2 from files from OE-Core
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'recipes-devtools/make/make-3.81')
-rw-r--r-- | recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch | 43 | ||||
-rw-r--r-- | recipes-devtools/make/make-3.81/makeinfo.patch | 22 |
2 files changed, 65 insertions, 0 deletions
diff --git a/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch b/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch new file mode 100644 index 0000000..102fe79 --- /dev/null +++ b/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | automake 1.12 has depricated automatic de-ANSI-fication support | ||
4 | |||
5 | this patch avoids these kinds of errors: | ||
6 | |||
7 | | configure.in:48: error: automatic de-ANSI-fication support has been removed | ||
8 | ... | ||
9 | | Makefile.am:19: error: automatic de-ANSI-fication support has been removed | ||
10 | | autoreconf: automake failed with exit status: 1 | ||
11 | | ERROR: autoreconf execution failed. | ||
12 | |||
13 | |||
14 | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
15 | 2012/05/04 | ||
16 | |||
17 | Index: make-3.81/configure.in | ||
18 | =================================================================== | ||
19 | --- make-3.81.orig/configure.in | ||
20 | +++ make-3.81/configure.in | ||
21 | @@ -44,9 +44,6 @@ AC_AIX | ||
22 | AC_ISC_POSIX | ||
23 | AC_MINIX | ||
24 | |||
25 | -# Needed for ansi2knr | ||
26 | -AM_C_PROTOTYPES | ||
27 | - | ||
28 | # Enable gettext, in "external" mode. | ||
29 | |||
30 | AM_GNU_GETTEXT_VERSION(0.14.1) | ||
31 | Index: make-3.81/Makefile.am | ||
32 | =================================================================== | ||
33 | --- make-3.81.orig/Makefile.am | ||
34 | +++ make-3.81/Makefile.am | ||
35 | @@ -16,7 +16,7 @@ | ||
36 | # GNU Make; see the file COPYING. If not, write to the Free Software | ||
37 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
38 | |||
39 | -AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news ansi2knr | ||
40 | +AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news | ||
41 | ACLOCAL_AMFLAGS = -I config | ||
42 | |||
43 | MAKE_HOST = @MAKE_HOST@ | ||
diff --git a/recipes-devtools/make/make-3.81/makeinfo.patch b/recipes-devtools/make/make-3.81/makeinfo.patch new file mode 100644 index 0000000..5dd7604 --- /dev/null +++ b/recipes-devtools/make/make-3.81/makeinfo.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | Allow docs to build with makeinfo 5.X, fixing the error: | ||
2 | |||
3 | doc/make.texi:8165: @itemx must follow @item | ||
4 | |||
5 | Upstream-Status: Backport | ||
6 | |||
7 | RP | ||
8 | 2014/03/29 | ||
9 | |||
10 | Index: make-3.81/doc/make.texi | ||
11 | =================================================================== | ||
12 | --- make-3.81.orig/doc/make.texi 2006-04-01 06:36:40.000000000 +0000 | ||
13 | +++ make-3.81/doc/make.texi 2014-03-29 09:39:51.007727012 +0000 | ||
14 | @@ -8162,7 +8162,7 @@ | ||
15 | rarely need to specify this option since @samp{make} does it for you; | ||
16 | see @ref{-w Option, ,The @samp{--print-directory} Option}.) | ||
17 | |||
18 | -@itemx --no-print-directory | ||
19 | +@item --no-print-directory | ||
20 | @cindex @code{--no-print-directory} | ||
21 | Disable printing of the working directory under @code{-w}. | ||
22 | This option is useful when @code{-w} is turned on automatically, | ||