changeset 320:65b7f7a6ddf4

Don't fiddle with qemu in host-tools. Andre Ruiz noticed that we were checking $host_tools rather than $HOST_TOOLS so this hasn't worked in a while, but it was just a warning anyway. We can't compile qemu from source until TCG goes in and the gcc 3.x dependencies go away, and we're just using it as a smoke test anyway during this part of the build. So if it's not there, it's not there.
author Rob Landley <rob@landley.net>
date Sun, 13 Apr 2008 22:16:55 -0500
parents 17ac907b99f8
children 1ff989975d2c
files host-tools.sh
diffstat 1 files changed, 0 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/host-tools.sh	Fri Apr 11 17:48:58 2008 -0500
+++ b/host-tools.sh	Sun Apr 13 22:16:55 2008 -0500
@@ -113,26 +113,4 @@
 #
 #cleanup squashfs
 
-# we can't reliably build qemu because it needs a specific gcc version (3.x,
-# won't work with 4.x), and who knows what gcc version the host
-# has?  So until qemu is fixed to build with an arbitrary c compiler,
-# just test for its' existence and warn.  (All the build uses it for is
-# a quick sanity test on the cross compiler anyway.)
-
-temp="qemu-${qemu_test}"
-[ -z "$qemu_test" ] && temp=qemu
-
-if [ -z "$(which $temp)" ]
-then
-  echo "***************** warning: $temp not found. *******************"
-fi
-
-#  setupfor qemu &&
-#  ./configure --disable-gcc-check --disable-gfx-check --prefix="${CROSS}" &&
-#  make &&
-#  make install &&
-#  cd ..
-#
-#  cleanup qemu
-
 echo -e "\e[32mHost tools build complete.\e[0m"