From: Stefan Weil Date: Mon, 1 Mar 2010 21:20:29 +0000 (+0100) Subject: configure: Fix code which creates config.mak files X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~8502 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37116c89cdafc04682709919ca72d8dabc43f668;p=sdk%2Femulator%2Fqemu.git configure: Fix code which creates config.mak files 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 Signed-off-by: Anthony Liguori --- diff --git a/configure b/configure index 7992812..462a9b7 100755 --- a/configure +++ b/configure @@ -2702,7 +2702,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 @@ -2718,7 +2718,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