qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] when overriding default tool names don't add cross-prefix
@ 2011-08-04 22:10 Stuart yoder
  2011-08-05 16:58 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Stuart yoder @ 2011-08-04 22:10 UTC (permalink / raw)
  To: anthony, qemu-devel; +Cc: Stuart Yoder

From: Stuart Yoder <stuart.yoder@freescale.com>

When overriding a tool name via a shell variable, don't
tack on the cross-prefix.  This specifically allows the
pkg-config command to be overridden and work where it
does not exist in some cross build environments.

Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
---
 configure |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/configure b/configure
index 38e3724..ad522f2 100755
--- a/configure
+++ b/configure
@@ -217,14 +217,14 @@ done
 # Using uname is really, really broken.  Once we have the right set of checks
 # we can eliminate it's usage altogether
 
-cc="${cross_prefix}${CC-gcc}"
-ar="${cross_prefix}${AR-ar}"
-objcopy="${cross_prefix}${OBJCOPY-objcopy}"
-ld="${cross_prefix}${LD-ld}"
-strip="${cross_prefix}${STRIP-strip}"
-windres="${cross_prefix}${WINDRES-windres}"
-pkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}"
-sdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}"
+cc="${CC-${cross_prefix}gcc}"
+ar="${AR-${cross_prefix}ar}"
+objcopy="${OBJCOPY-${cross_prefix}objcopy}"
+ld="${LD-${cross_prefix}ld}"
+strip="${STRIP-${cross_prefix}strip}"
+windres="${WINDRES-${cross_prefix}windres}"
+pkg_config="${PKG_CONFIG-${cross_prefix}pkg-config}"
+sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
 
 # default flags for all hosts
 QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
-- 
1.7.3.4

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

* Re: [Qemu-devel] [PATCH] when overriding default tool names don't add cross-prefix
  2011-08-04 22:10 [Qemu-devel] [PATCH] when overriding default tool names don't add cross-prefix Stuart yoder
@ 2011-08-05 16:58 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2011-08-05 16:58 UTC (permalink / raw)
  To: Stuart yoder; +Cc: qemu-devel

On 08/04/2011 05:10 PM, Stuart yoder wrote:
> From: Stuart Yoder<stuart.yoder@freescale.com>
>
> When overriding a tool name via a shell variable, don't
> tack on the cross-prefix.  This specifically allows the
> pkg-config command to be overridden and work where it
> does not exist in some cross build environments.
>
> Signed-off-by: Stuart Yoder<stuart.yoder@freescale.com>

Applied.  Thanks.

Regards,

Anthony Liguori

> ---
>   configure |   16 ++++++++--------
>   1 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/configure b/configure
> index 38e3724..ad522f2 100755
> --- a/configure
> +++ b/configure
> @@ -217,14 +217,14 @@ done
>   # Using uname is really, really broken.  Once we have the right set of checks
>   # we can eliminate it's usage altogether
>
> -cc="${cross_prefix}${CC-gcc}"
> -ar="${cross_prefix}${AR-ar}"
> -objcopy="${cross_prefix}${OBJCOPY-objcopy}"
> -ld="${cross_prefix}${LD-ld}"
> -strip="${cross_prefix}${STRIP-strip}"
> -windres="${cross_prefix}${WINDRES-windres}"
> -pkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}"
> -sdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}"
> +cc="${CC-${cross_prefix}gcc}"
> +ar="${AR-${cross_prefix}ar}"
> +objcopy="${OBJCOPY-${cross_prefix}objcopy}"
> +ld="${LD-${cross_prefix}ld}"
> +strip="${STRIP-${cross_prefix}strip}"
> +windres="${WINDRES-${cross_prefix}windres}"
> +pkg_config="${PKG_CONFIG-${cross_prefix}pkg-config}"
> +sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
>
>   # default flags for all hosts
>   QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"

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

end of thread, other threads:[~2011-08-05 16:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 22:10 [Qemu-devel] [PATCH] when overriding default tool names don't add cross-prefix Stuart yoder
2011-08-05 16:58 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).