diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-22 16:49:14 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-22 16:49:14 +0000 |
commit | c39e33380f5c3486eed06bb6a7fbc6221365555c (patch) | |
tree | d3116cdeaa024442922660a1d01d6156604be2cc /configure | |
parent | 748e49932dfa9f293f60995ca67dd387e942ce05 (diff) |
Only build qemu-img with softmmu targets.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3207 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -910,6 +910,12 @@ fi echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h +tools= +if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then + tools="qemu-img\$(EXESUF) $tools" +fi +echo "TOOLS=$tools" >> $config_mak + test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h for target in $target_list; do |