diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-16 17:57:08 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-16 17:28:55 -0500 |
commit | d2917a477751f66571ffff3461d05da9bb70e8ae (patch) | |
tree | 57ff4df09c3d6adb6e2f3341f6f7aadcae7d1deb /Makefile.target | |
parent | 0ba99fc6a188988f11361cb41eba7c1afce346d4 (diff) |
TARGET_ARCH2 is already known at configure time.
Remove re-construction in Makefile.target
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Makefile.target b/Makefile.target index 9f550410a3..54c3568ed9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -14,31 +14,6 @@ LIBS= ifndef TARGET_ARCH2 TARGET_ARCH2=$(TARGET_ARCH) endif -ifeq ($(TARGET_ARCH),arm) - ifeq ($(TARGET_WORDS_BIGENDIAN),yes) - TARGET_ARCH2=armeb - endif -endif -ifeq ($(TARGET_ARCH),sh4) - ifeq ($(TARGET_WORDS_BIGENDIAN),yes) - TARGET_ARCH2=sh4eb - endif -endif -ifeq ($(TARGET_ARCH),mips) - ifneq ($(TARGET_WORDS_BIGENDIAN),yes) - TARGET_ARCH2=mipsel - endif -endif -ifeq ($(TARGET_ARCH),mipsn32) - ifneq ($(TARGET_WORDS_BIGENDIAN),yes) - TARGET_ARCH2=mipsn32el - endif -endif -ifeq ($(TARGET_ARCH),mips64) - ifneq ($(TARGET_WORDS_BIGENDIAN),yes) - TARGET_ARCH2=mips64el - endif -endif ifdef CONFIG_USER_ONLY # user emulator name |