diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-10-31 20:47:14 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-10-31 20:47:14 +0000 |
commit | dc3214851bffaaf7b23e422f9f7552b5666708b2 (patch) | |
tree | 7584098427a6be74ca79ac062ee3564f09c993f3 /util/xcompile | |
parent | 3f3a5f60d3e2d2470ce3099874f753ae7107b3f2 (diff) |
Only remove .xcompile with distclean. Look for crossgcc in util.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4902 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/xcompile')
-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 104909845f..79d4bfe5ad 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -10,7 +10,7 @@ GCCPREFIX=invalid TMP=`mktemp /tmp/temp.XXXX` echo "mov %eax, %eax" > ${TMP}.s printf "\x7fELF" > ${TMP}.compare -for gccprefixes in `pwd`/../crossgcc/xgcc/bin/i386-elf- i386-elf- ""; do +for gccprefixes in `pwd`/util/crossgcc/xgcc/bin/i386-elf- i386-elf- ""; do if which ${gccprefixes}as 2>/dev/null >/dev/null; then printf "" else |