Update of /cvsroot/linux-vax/toolchain
In directory sc8-pr-cvs1:/tmp/cvs-serv13645
Modified Files:
build-native-compiler.sh
Log Message:
- Add the path to the vax-dec-linux-* binaries to $PATH *before* trying
to use it. It did work for me only because there was already some (other)
vax-dev-linux-* toolchain in my $PATH ...
Index: build-native-compiler.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/build-native-compiler.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- build-native-compiler.sh 14 Nov 2003 07:42:01 -0000 1.3
+++ build-native-compiler.sh 14 Nov 2003 23:46:32 -0000 1.4
@@ -99,6 +99,7 @@
# have some values set to non-standard values. So I'll override them and
# reload the .config file.
#
+export PATH="${PATH}:${CROSSTOOLS_INSTALL}/bin"
cd "${UCLIBC}"
[ -e .config ] && rm -f .config
make defconfig
@@ -124,7 +125,6 @@
#
# Build native compiler
#
-export PATH="${PATH}:${CROSSTOOLS_INSTALL}/bin"
cd "${TOOLCHAIN}"
[ -e "${TOOLCHAIN}/b-vax-native" ] && rm -rf "${TOOLCHAIN}/b-vax-native"
mkdir "${TOOLCHAIN}/b-vax-native"
|