All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection
@ 2010-03-01 21:10 Stefan Weil
  2010-03-03 18:29 ` [Qemu-devel] " Juan Quintela
  2010-03-09 17:21 ` [Qemu-devel] " Anthony Liguori
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Weil @ 2010-03-01 21:10 UTC (permalink / raw)
  To: QEMU Developers

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
 configure |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index dfe3e42..a14aba7 100755
--- a/configure
+++ b/configure
@@ -1091,8 +1091,8 @@ EOF
     # static link with sdl ? (note: sdl.pc's --static --libs is broken)
     if test "$sdl" = "yes" -a "$static" = "yes" ; then
       if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
-         sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`"
-         sdl_cflags="$sdl_cflags `aalib-config --cflags >2 /dev/null`"
+         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
+         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
       fi
       if compile_prog "$sdl_cflags" "$sdl_libs" ; then
 	:
-- 
1.6.6.1

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

* [Qemu-devel] Re: [PATCH] configure: Fix wrong stderr redirection
  2010-03-01 21:10 [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection Stefan Weil
@ 2010-03-03 18:29 ` Juan Quintela
  2010-03-09 17:21 ` [Qemu-devel] " Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Juan Quintela @ 2010-03-03 18:29 UTC (permalink / raw)
  To: Stefan Weil; +Cc: QEMU Developers

Stefan Weil <weil@mail.berlios.de> wrote:
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>

Ouch.  good catch.

Acked-by: Juan Quintela <quintela@redhat.com>

> ---
>  configure |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configure b/configure
> index dfe3e42..a14aba7 100755
> --- a/configure
> +++ b/configure
> @@ -1091,8 +1091,8 @@ EOF
>      # static link with sdl ? (note: sdl.pc's --static --libs is broken)
>      if test "$sdl" = "yes" -a "$static" = "yes" ; then
>        if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
> -         sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`"
> -         sdl_cflags="$sdl_cflags `aalib-config --cflags >2 /dev/null`"
> +         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
> +         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
>        fi
>        if compile_prog "$sdl_cflags" "$sdl_libs" ; then
>  	:

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

* Re: [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection
  2010-03-01 21:10 [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection Stefan Weil
  2010-03-03 18:29 ` [Qemu-devel] " Juan Quintela
@ 2010-03-09 17:21 ` Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Anthony Liguori @ 2010-03-09 17:21 UTC (permalink / raw)
  To: Stefan Weil; +Cc: qemu-devel

On 03/01/2010 03:10 PM, Stefan Weil wrote:
> Signed-off-by: Stefan Weil<weil@mail.berlios.de>
>    


Applied.  Thanks.

Regards,

Anthony Liguori
> ---
>   configure |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configure b/configure
> index dfe3e42..a14aba7 100755
> --- a/configure
> +++ b/configure
> @@ -1091,8 +1091,8 @@ EOF
>       # static link with sdl ? (note: sdl.pc's --static --libs is broken)
>       if test "$sdl" = "yes" -a "$static" = "yes" ; then
>         if test $? = 0&&  echo $sdl_libs | grep -- -laa>  /dev/null; then
> -         sdl_libs="$sdl_libs `aalib-config --static-libs>2 /dev/null`"
> -         sdl_cflags="$sdl_cflags `aalib-config --cflags>2 /dev/null`"
> +         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
> +         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
>         fi
>         if compile_prog "$sdl_cflags" "$sdl_libs" ; then
>   	:
>    

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

end of thread, other threads:[~2010-03-09 17:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-01 21:10 [Qemu-devel] [PATCH] configure: Fix wrong stderr redirection Stefan Weil
2010-03-03 18:29 ` [Qemu-devel] " Juan Quintela
2010-03-09 17:21 ` [Qemu-devel] " Anthony Liguori

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.