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 | 4252b077eb92e9216b8052932a27f06dd4052110 (patch) | |
tree | 53e58b2fb592884230e609d15fc61af165d18442 /scripts/bootstrap.sh | |
parent | remove automake dep (diff) | |
download | historical-4252b077eb92e9216b8052932a27f06dd4052110.tar.gz historical-4252b077eb92e9216b8052932a27f06dd4052110.tar.bz2 historical-4252b077eb92e9216b8052932a27f06dd4052110.zip |
add texinfo to bootstrap
Diffstat (limited to 'scripts/bootstrap.sh')
-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 |