wok-stable rev 10419
binutils: Replaced $BUILD_HOST with $HOST_SYSTEM.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue May 24 13:39:17 2011 +0000 (2011-05-24) |
parents | aca8a14a46d9 |
children | f7fe51b9dfae |
files | binutils/receipt |
line diff
1.1 --- a/binutils/receipt Tue May 24 08:08:39 2011 +0000 1.2 +++ b/binutils/receipt Tue May 24 13:39:17 2011 +0000 1.3 @@ -18,7 +18,7 @@ 1.4 { 1.5 mkdir -p binutils-build && cd binutils-build 1.6 { $src/configure \ 1.7 - --target=$BUILD_HOST --disable-nls \ 1.8 + --target=$HOST_SYSTEM --disable-nls \ 1.9 --disable-werror && 1.10 make 1.11 } || return 1 1.12 @@ -32,9 +32,9 @@ 1.13 cook_tmp_toolchain() 1.14 { 1.15 mkdir -p binutils-build && cd binutils-build 1.16 - { CC="$BUILD_HOST-gcc -B/tools/lib/" \ 1.17 - AR=$BUILD_HOST-ar RANLIB=$BUILD_HOST-ranlib \ 1.18 - $src/configure \ 1.19 + { CC="$HOST_SYSTEM-gcc -B/tools/lib/" \ 1.20 + AR=$HOST_SYSTEM-ar RANLIB=$HOST_SYSTEM-ranlib \ 1.21 + $src/configure $CONFIGURE_ARGS \ 1.22 --disable-nls --with-lib-path=/tools/lib && 1.23 make && 1.24 make install &&