From: M. R. B. <mr...@0x...> - 2001-09-04 02:16:58
|
* Renegade Muskrat <dra...@sp...> on Mon, Sep 03, 2001: > TARGET=sh-linux > BASE=/home/build > PREFIX=/usr/local/${TARGET} > PATH=${PREFIX}/bin:${PATH} > [...] > > # gcc > > cd ${BASE} > tar -xvIf gcc-core-20010514.tar.bz2 > tar -xvIfgcc-g++-20010514.tar.bz2 > gunzip -c sh-gcc-20010514-arch+pic+wind+misc.diff.gz | patch -p0 > mkdir build-gcc > cd build-gcc > ../gcc-20010514/configure --host=${HOST} --target=${TARGET} \ > --without-headers --with-newlib -v \ > 2>&1 | tee -a configure.out You forgot --prefix=${PREFIX} here. M. R. |