From: Saul Wold <sgw@linux.intel.com>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 5/5] grub-efi-native: fix errors with automake 1.11.2
Date: Tue, 17 Jan 2012 13:45:22 -0800 [thread overview]
Message-ID: <4F15EBF2.3070909@linux.intel.com> (raw)
In-Reply-To: <18ffbd8884132baf127ac1104cf8aa393b59e3ff.1326831402.git.nitin.a.kamble@intel.com>
On 01/17/2012 12:30 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> This commit replaces earlier patch
> (grub-1.99_fix_for_automake_1.11.2.patch) which did not work on all distros.
>
> Fixes these errors observed with automake 1.11.2
> The useof pkglibhas become more strict compared to the earlier release
> of
> automake resulting in these failures.
> Fixed the files related to automake to avoid the issue.
>
> | conf/Makefile.common:140: `pkglibdir' is not a legitimate directory
> for `DATA'
> | grub-core/Makefile.am:5: `conf/Makefile.common' included from here
> | conf/Makefile.common:140: `pkglibdir' is not a legitimate directory
> for `DATA'
> | Makefile.am:6: `conf/Makefile.common' included from here
> | autoreconf: automake failed with exit status: 1
> | ERROR: autoreconf execution failed.
>
> | conf/Makefile.common:150: `pkglibdir' is not a legitimate directory
> for `SCRIPTS'
> | grub-core/Makefile.am:5: `conf/Makefile.common' included from here
> | conf/Makefile.common:140: `pkglibdir' is not a legitimate directory
> for `DATA'
> | grub-core/Makefile.am:5: `conf/Makefile.common' included from here
> | conf/Makefile.common:150: `pkglibdir' is not a legitimate directory
> for `SCRIPTS'
> | Makefile.am:6: `conf/Makefile.common' included from here
> | conf/Makefile.common:140: `pkglibdir' is not a legitimate directory
> for `DATA'
> | Makefile.am:6: `conf/Makefile.common' included from here
> | autoreconf: automake failed with exit status: 1
>
> Signed-off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> ---
> .../files/grub-1.99_fix_for_automake_1.11.2.patch | 5808 --------------------
> meta/recipes-bsp/grub/grub-efi-native_1.99.bb | 4 +-
> 2 files changed, 2 insertions(+), 5810 deletions(-)
>
> diff --git a/meta/recipes-bsp/grub/files/grub-1.99_fix_for_automake_1.11.2.patch b/meta/recipes-bsp/grub/files/grub-1.99_fix_for_automake_1.11.2.patch
> index 1c70e4a..4d729e5 100644
> --- a/meta/recipes-bsp/grub/files/grub-1.99_fix_for_automake_1.11.2.patch
> +++ b/meta/recipes-bsp/grub/files/grub-1.99_fix_for_automake_1.11.2.patch
> @@ -65,5612 +65,6 @@ Index: grub-1.99/Makefile.am
>
>
Missing Patch header with Upstream-Status: and Signed-off-by:
Sau!
> if COND_i386_coreboot
> -Index: grub-1.99/Makefile.tpl
> -===================================================================
> ---- grub-1.99.orig/Makefile.tpl
> -+++ grub-1.99/Makefile.tpl
<SNIP>
> - CLEANFILES += genmod.sh
> diff --git a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
> index b976d1e..dfa4725 100644
> --- a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
> +++ b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
> @@ -14,9 +14,9 @@ LICENSE = "GPLv3"
> LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>
> # FIXME: We should be able to optionally drop freetype as a dependency
> -DEPENDS = "help2man-native"
> +DEPENDS = "help2man-native autogen-native"
> RDEPENDS_${PN} = "diffutils freetype"
> -PR = "r3"
> +PR = "r4"
>
> # Native packages do not normally rebuild when the target changes.
> # Ensure this is built once per HOST-TARGET pair.
next prev parent reply other threads:[~2012-01-17 21:54 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-17 20:28 [PATCH 0/5] Recipes for fixing the grub-efi issue properly nitin.a.kamble
2012-01-17 20:30 ` [PATCH 1/5] bdwgc: new recipe for autogen nitin.a.kamble
2012-01-17 21:43 ` Saul Wold
2012-01-17 22:20 ` Flanagan, Elizabeth
2012-01-17 22:27 ` Kamble, Nitin A
2012-01-17 22:52 ` Richard Purdie
2012-01-17 22:59 ` Flanagan, Elizabeth
2012-01-17 23:22 ` Khem Raj
2012-01-18 1:28 ` Kamble, Nitin A
2012-01-18 1:33 ` Kamble, Nitin A
2012-01-18 5:46 ` Khem Raj
2012-01-18 16:52 ` Kamble, Nitin A
2012-01-17 20:30 ` [PATCH 2/5] libunistring: " nitin.a.kamble
2012-01-17 20:30 ` [PATCH 3/5] guile: " nitin.a.kamble
2012-01-18 9:54 ` Koen Kooi
2012-01-18 21:09 ` Kamble, Nitin A
2012-01-18 23:34 ` Kamble, Nitin A
2012-01-17 20:30 ` [PATCH 4/5] autogen-native: new recipe for grub-efi-native nitin.a.kamble
2012-01-17 20:30 ` [PATCH 5/5] grub-efi-native: fix errors with automake 1.11.2 nitin.a.kamble
2012-01-17 21:45 ` Saul Wold [this message]
2012-01-17 22:08 ` Kamble, Nitin A
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F15EBF2.3070909@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox