From: Jan-Benedict G. <jb...@us...> - 2005-12-17 19:12:30
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18811 Modified Files: build_toolchain.sh Log Message: - Log what's executed. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- build_toolchain.sh 17 Dec 2005 19:08:19 -0000 1.41 +++ build_toolchain.sh 17 Dec 2005 19:12:19 -0000 1.42 @@ -644,7 +644,7 @@ # # The --with-headers part is important, --with-sysinclude # probably isn't... - CC="${TARGET}-gcc" "${GLIBC_SRC}/configure" \ + CC="${TARGET}-gcc" execute "${GLIBC_SRC}/configure" \ --target="${TARGET}" \ --disable-sanity-checks \ --host="${TARGET}" \ @@ -659,7 +659,7 @@ # exit, because this won't work and thus there's no native # compiler based on glibc... # - make || true + execute make || true echo "WARNING: This build is was faked to be okay" >&2 exit 0 popd |