public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 0/1][dora] make: fix invoking makeinfo failed at do_install time
@ 2014-04-25  8:59 Hongxu Jia
  2014-04-25  8:59 ` [PATCH 1/1] " Hongxu Jia
  0 siblings, 1 reply; 3+ messages in thread
From: Hongxu Jia @ 2014-04-25  8:59 UTC (permalink / raw)
  To: openembedded-core; +Cc: saul.wold

The following changes since commit 50e9ccb2aff7b9f9dca4fda99a6832c60f64de3b:

  bitbake: bitbake: fetch2/git: Anchor names when using ls-remote (2014-04-19 11:04:48 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/fix-dora-make
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-dora-make

Hongxu Jia (1):
  make: fix invoking makeinfo failed at do_install time

 .../doc-make.texi-fix-itemx-must-follow-item.patch | 24 ++++++++++++++++++++++
 meta/recipes-devtools/make/make.inc                |  1 +
 2 files changed, 25 insertions(+)
 create mode 100644 meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch

-- 
1.8.1.2



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] make: fix invoking makeinfo failed at do_install time
  2014-04-25  8:59 [PATCH 0/1][dora] make: fix invoking makeinfo failed at do_install time Hongxu Jia
@ 2014-04-25  8:59 ` Hongxu Jia
  2014-04-29  3:04   ` Robert Yang
  0 siblings, 1 reply; 3+ messages in thread
From: Hongxu Jia @ 2014-04-25  8:59 UTC (permalink / raw)
  To: openembedded-core; +Cc: saul.wold

Reproduce steps:
$ bitbake texinfo-native
$ bitbake make
$ bitbake make -cdevshell
In the devshell:
root:make-3.82# echo "" >> doc/make.texi
root:make-3.82# ../temp/run.do_install

Failed Log:
...
tmp/work/i586-poky-linux/make/3.81-r1/make-3.81/doc/make.texi:8165: @itemx must follow @item
...

Backport from make 4.0 to fix this issue.

[YOCTO #6219]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 .../doc-make.texi-fix-itemx-must-follow-item.patch | 24 ++++++++++++++++++++++
 meta/recipes-devtools/make/make.inc                |  1 +
 2 files changed, 25 insertions(+)
 create mode 100644 meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch

diff --git a/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch b/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch
new file mode 100644
index 0000000..fbbff38
--- /dev/null
+++ b/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch
@@ -0,0 +1,24 @@
+doc/make.texi: fix @itemx must follow @item
+
+Upstream-Status: Backport from make 4.0
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ doc/make.texi | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/doc/make.texi b/doc/make.texi
+--- a/doc/make.texi
++++ b/doc/make.texi
+@@ -8162,7 +8162,7 @@ from complicated nests of recursive @code{make} commands.
+ rarely need to specify this option since @samp{make} does it for you;
+ see @ref{-w Option, ,The @samp{--print-directory} Option}.)
+ 
+-@itemx --no-print-directory
++@item --no-print-directory
+ @cindex @code{--no-print-directory}
+ Disable printing of the working directory under @code{-w}.
+ This option is useful when @code{-w} is turned on automatically,
+-- 
+1.8.1.2
+
diff --git a/meta/recipes-devtools/make/make.inc b/meta/recipes-devtools/make/make.inc
index 5de74e4..faf66e1 100644
--- a/meta/recipes-devtools/make/make.inc
+++ b/meta/recipes-devtools/make/make.inc
@@ -6,6 +6,7 @@ HOMEPAGE = "http://www.gnu.org/software/make/"
 SECTION = "devel"
 
 SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.bz2 \
+           file://doc-make.texi-fix-itemx-must-follow-item.patch \
            file://SCCS.patch"
 
 inherit autotools gettext
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] make: fix invoking makeinfo failed at do_install time
  2014-04-25  8:59 ` [PATCH 1/1] " Hongxu Jia
@ 2014-04-29  3:04   ` Robert Yang
  0 siblings, 0 replies; 3+ messages in thread
From: Robert Yang @ 2014-04-29  3:04 UTC (permalink / raw)
  To: Hongxu Jia, openembedded-core; +Cc: saul.wold


Tested and Reviewed by Robert Yang <liezhi.yang@windriver.com>

// Robert

On 04/25/2014 04:59 PM, Hongxu Jia wrote:
> Reproduce steps:
> $ bitbake texinfo-native
> $ bitbake make
> $ bitbake make -cdevshell
> In the devshell:
> root:make-3.82# echo "" >> doc/make.texi
> root:make-3.82# ../temp/run.do_install
>
> Failed Log:
> ...
> tmp/work/i586-poky-linux/make/3.81-r1/make-3.81/doc/make.texi:8165: @itemx must follow @item
> ...
>
> Backport from make 4.0 to fix this issue.
>
> [YOCTO #6219]
>
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> ---
>   .../doc-make.texi-fix-itemx-must-follow-item.patch | 24 ++++++++++++++++++++++
>   meta/recipes-devtools/make/make.inc                |  1 +
>   2 files changed, 25 insertions(+)
>   create mode 100644 meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch
>
> diff --git a/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch b/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch
> new file mode 100644
> index 0000000..fbbff38
> --- /dev/null
> +++ b/meta/recipes-devtools/make/files/doc-make.texi-fix-itemx-must-follow-item.patch
> @@ -0,0 +1,24 @@
> +doc/make.texi: fix @itemx must follow @item
> +
> +Upstream-Status: Backport from make 4.0
> +
> +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> +---
> + doc/make.texi | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/doc/make.texi b/doc/make.texi
> +--- a/doc/make.texi
> ++++ b/doc/make.texi
> +@@ -8162,7 +8162,7 @@ from complicated nests of recursive @code{make} commands.
> + rarely need to specify this option since @samp{make} does it for you;
> + see @ref{-w Option, ,The @samp{--print-directory} Option}.)
> +
> +-@itemx --no-print-directory
> ++@item --no-print-directory
> + @cindex @code{--no-print-directory}
> + Disable printing of the working directory under @code{-w}.
> + This option is useful when @code{-w} is turned on automatically,
> +--
> +1.8.1.2
> +
> diff --git a/meta/recipes-devtools/make/make.inc b/meta/recipes-devtools/make/make.inc
> index 5de74e4..faf66e1 100644
> --- a/meta/recipes-devtools/make/make.inc
> +++ b/meta/recipes-devtools/make/make.inc
> @@ -6,6 +6,7 @@ HOMEPAGE = "http://www.gnu.org/software/make/"
>   SECTION = "devel"
>
>   SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.bz2 \
> +           file://doc-make.texi-fix-itemx-must-follow-item.patch \
>              file://SCCS.patch"
>
>   inherit autotools gettext
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-29  3:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-25  8:59 [PATCH 0/1][dora] make: fix invoking makeinfo failed at do_install time Hongxu Jia
2014-04-25  8:59 ` [PATCH 1/1] " Hongxu Jia
2014-04-29  3:04   ` Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox