diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-07-01 21:34:30 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-07-01 21:34:30 +0000 |
commit | 9c1704aaf43b10c4563a48f739b5f1fce3c1ee3e (patch) | |
tree | c343ca39b20fc3d9b962718ff732184cd3302155 /scripts | |
parent | remove automake dep (diff) | |
download | gentoo-2-9c1704aaf43b10c4563a48f739b5f1fce3c1ee3e.tar.gz gentoo-2-9c1704aaf43b10c4563a48f739b5f1fce3c1ee3e.tar.bz2 gentoo-2-9c1704aaf43b10c4563a48f739b5f1fce3c1ee3e.zip |
add texinfo to bootstrap
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index a494da186c08..4bd1df7dc1e0 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -21,6 +21,7 @@ myGETTEXT=`cat ${MYPROFILEDIR}/packages | grep -v '^#' | grep sys-devel/gettext myBINUTILS=`cat ${MYPROFILEDIR}/packages | grep -v '^#' | grep sys-devel/binutils | sed 's:^\*::'` myGCC=`cat ${MYPROFILEDIR}/packages | grep -v '^#' | grep sys-devel/gcc | sed 's:^\*::'` myGLIBC=`cat ${MYPROFILEDIR}/packages | grep -v '^#' | grep sys-libs/glibc | sed 's:^\*::'` +myTEXINFO=`cat ${MYPROFILEDIR}/packages|grep -v '^#'|grep sys-apps/texinfo |sed 's:^\*::'` echo "Using $myBASELAYOUT" echo "Using $myPORTAGE" @@ -28,6 +29,7 @@ echo "Using $myBINUTILS" echo "Using $myGCC" echo "Using $myGETTEXT" echo "Using $myGLIBC" +echo "Using $myTEXINFO" cleanup() { cp /etc/make.conf.build /etc/make.conf @@ -70,9 +72,9 @@ export AUTOCLEAN="no" #above allows portage to overwrite stuff cd /usr/portage emerge $myPORTAGE #separate, so that the next command uses the *new* emerge -emerge $myBASELAYOUT $myGETTEXT $myBINUTILS $myGCC || cleanup 1 +emerge $myBASELAYOUT $myTEXINFO $myGETTEXT $myBINUTILS $myGCC || cleanup 1 #make.conf has been overwritten, so we explicitly export our original settings export USE="$ORIGUSE bootstrap" -emerge $myGLIBC $myBASELAYOUT $myGETTEXT $myBINUTILS $myGCC || cleanup 1 +emerge $myGLIBC $myBASELAYOUT $myTEXINFO $myGETTEXT $myBINUTILS $myGCC || cleanup 1 #restore original make.conf cleanup 0 |