summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-03 14:47:03 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 13:05:46 -0500
commit053dd92e8a79fa9c721c8abde722810319eb1925 (patch)
tree8ed04f35f0111cafd43fc2cbfdee5a6d365a2f17 /configure
parent55d9c04bc3418ae7bd49a8f66a070f0a4c466c69 (diff)
downloadqemu-053dd92e8a79fa9c721c8abde722810319eb1925.tar.gz
We also need TARGET_<arechname> in Makefiles
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 0ee2c470d7..a504d58330 100755
--- a/configure
+++ b/configure
@@ -1982,6 +1982,8 @@ case "$target_arch2" in
;;
esac
echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak
+target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
+echo "TARGET_$target_arch_name=y" >> $config_mak
echo "TARGET_ARCH2=$target_arch2" >> $config_mak
# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
if [ "$TARGET_BASE_ARCH" = "" ]; then