diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-02 16:14:25 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-02 16:14:25 +0000 |
commit | ff956192c28a62dc8c7409fac4062ef9f2b7d1c5 (patch) | |
tree | f66359f172d405055d7a63764386e6aec88214d0 /bootstrap.sh | |
parent | new portage bug fix release (diff) | |
download | gentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.tar.gz gentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.tar.bz2 gentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.zip |
*** empty log message ***
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 000000000000..05cbfe52f38f --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +LIST=$1 + +myGETTEXT=`grep "sys-devel/gettext" $1` +myBINUTILS=`grep "sys-devel/binutils" $1` +myGCC=`grep "sys-devel/gcc" $1` +myGLIBC=`grep "sys-libs/glibc" $1` + +echo "Using BINUTILS $myBINUTILS" +echo "Using GCC $myGCC" +echo "Using GETTEXT $myGETTEXT" +echo "Using GLIBC $myGLIBC" + +export USE="build" +export STEPS="clean unpack compile install qmerge" +cd /usr/portage +ebuild $myBINUTILS $STEPS || exit +ebuild $myGCC $STEPS || exit +ebuild $myGETTEXT $STEPS || exit +unset USE +ebuild $myGLIBC $STEPS || exit +ebuild $myGETTEXT $STEPS || exit +ebuild $myBINUTILS $STEPS || exit +ebuild $myGCC $STEPS || exit |