diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 14:20:11 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 21:14:35 +0200 |
commit | b83f7deb78fbc440a42db47eaa0605e116d9d28e (patch) | |
tree | ffdb10190fbd3ad72e3bb8c5aa4846c84d44ef17 /util | |
parent | 58f73a69cd83c46604795d728f296779c1de162c (diff) |
build: get rid of a special case
Don't call things in xcompile i386 and in the
buildsystem x86_32 and then bridge things so
they match. just call it the same everywhere.
Change-Id: Ieef5f03f7aafb0b0a606fbe5a2386e310d2b0e94
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/5766
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/xcompile/xcompile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 0ac2bec942..b342de308f 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -181,7 +181,7 @@ arch_config_aarch64() { } arch_config_x86() { - TARCH="i386" + TARCH="x86_32" TBFDARCH="i386" TCLIST="i386 x86_64" TWIDTH="32" |