* [Qemu-devel] [PATCH] configure: Fix code which creates config.mak files
@ 2010-03-01 21:20 Stefan Weil
2010-03-09 17:21 ` Anthony Liguori
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Weil @ 2010-03-01 21:20 UTC (permalink / raw)
To: QEMU Developers
These files are created by configure and grow
unnecessarily at each new call of configure:
roms/seabios/config.mak
roms/vgabios/config.mak
libhw32/config.mak
libhw64/config.mak
libhw32/config.mak and libhw64/config.mak set
compiler options, and the wrong old code results
in very long command lines.
The new code always writes a new config.mak
instead of appending to an existing one.
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 a14aba7..b4db650 100755
--- a/configure
+++ b/configure
@@ -2723,7 +2723,7 @@ fi
# temporary config to build submodules
for rom in seabios vgabios ; do
config_mak=roms/$rom/config.mak
- echo "# Automatically generated by configure - do not modify" >> $config_mak
+ echo "# Automatically generated by configure - do not modify" > $config_mak
echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
echo "CC=$cc" >> $config_mak
echo "BCC=bcc" >> $config_mak
@@ -2739,7 +2739,7 @@ for hwlib in 32 64; do
mkdir -p $d
rm -f $d/Makefile
ln -s $source_path/Makefile.hw $d/Makefile
- echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
+ echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
done
d=libuser
--
1.6.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] configure: Fix code which creates config.mak files
2010-03-01 21:20 [Qemu-devel] [PATCH] configure: Fix code which creates config.mak files Stefan Weil
@ 2010-03-09 17:21 ` Anthony Liguori
0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2010-03-09 17:21 UTC (permalink / raw)
To: Stefan Weil; +Cc: QEMU Developers
On 03/01/2010 03:20 PM, Stefan Weil wrote:
> These files are created by configure and grow
> unnecessarily at each new call of configure:
>
> roms/seabios/config.mak
> roms/vgabios/config.mak
> libhw32/config.mak
> libhw64/config.mak
>
> libhw32/config.mak and libhw64/config.mak set
> compiler options, and the wrong old code results
> in very long command lines.
>
> The new code always writes a new config.mak
> instead of appending to an existing one.
>
> 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 a14aba7..b4db650 100755
> --- a/configure
> +++ b/configure
> @@ -2723,7 +2723,7 @@ fi
> # temporary config to build submodules
> for rom in seabios vgabios ; do
> config_mak=roms/$rom/config.mak
> - echo "# Automatically generated by configure - do not modify">> $config_mak
> + echo "# Automatically generated by configure - do not modify"> $config_mak
> echo "SRC_PATH=$source_path/roms/$rom">> $config_mak
> echo "CC=$cc">> $config_mak
> echo "BCC=bcc">> $config_mak
> @@ -2739,7 +2739,7 @@ for hwlib in 32 64; do
> mkdir -p $d
> rm -f $d/Makefile
> ln -s $source_path/Makefile.hw $d/Makefile
> - echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib">> $d/config.mak
> + echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib"> $d/config.mak
> done
>
> d=libuser
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-03-09 17:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-01 21:20 [Qemu-devel] [PATCH] configure: Fix code which creates config.mak files Stefan Weil
2010-03-09 17:21 ` 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).