All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] unfs-server: Fix do_configure so it can be re-executed safely
@ 2012-04-15 13:02 Richard Purdie
  2012-04-16  6:35 ` Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2012-04-15 13:02 UTC (permalink / raw)
  To: openembedded-core

[YOCTO #2194]

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
index 4e619c5..d03c153 100644
--- a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
+++ b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
@@ -62,7 +62,9 @@ do_configure_prepend () {
     # 64-bit architectures:
     rm -f *_xdr.c
 
-    mv aclocal.m4 acinclude.m4
+    if [ ! -f ${S}/acinclude.m4 ]; then
+        mv ${S}/aclocal.m4 ${S}/acinclude.m4
+    fi
 }
 
 # This recipe is intended for -native and -nativesdk builds only,





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

* Re: [PATCH] unfs-server: Fix do_configure so it can be re-executed safely
  2012-04-15 13:02 [PATCH] unfs-server: Fix do_configure so it can be re-executed safely Richard Purdie
@ 2012-04-16  6:35 ` Khem Raj
  0 siblings, 0 replies; 2+ messages in thread
From: Khem Raj @ 2012-04-16  6:35 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Sun, Apr 15, 2012 at 6:02 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> [YOCTO #2194]
>

this was my issue I guess too since I was chosing gold for default
linker on arm and x86
and that was causing issues of rexecuting this. This was due to the
fact that I had a variabled called
LDISGOLD which differed in sstate signatures between mips and x86

> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> diff --git a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
> index 4e619c5..d03c153 100644
> --- a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
> +++ b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb
> @@ -62,7 +62,9 @@ do_configure_prepend () {
>     # 64-bit architectures:
>     rm -f *_xdr.c
>
> -    mv aclocal.m4 acinclude.m4
> +    if [ ! -f ${S}/acinclude.m4 ]; then
> +        mv ${S}/aclocal.m4 ${S}/acinclude.m4
> +    fi
>  }
>
>  # This recipe is intended for -native and -nativesdk builds only,
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

end of thread, other threads:[~2012-04-16  6:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-15 13:02 [PATCH] unfs-server: Fix do_configure so it can be re-executed safely Richard Purdie
2012-04-16  6:35 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.