diff options
author | 2003-01-15 01:47:33 +0000 | |
---|---|---|
committer | 2003-01-15 01:47:33 +0000 | |
commit | 672dee4e1108a9ebd555ad6c7b6920b38bd1e0b3 (patch) | |
tree | 77b3a100bd075503c15b9f6f31de101b6b22eec7 | |
parent | reload init (diff) | |
download | historical-672dee4e1108a9ebd555ad6c7b6920b38bd1e0b3.tar.gz historical-672dee4e1108a9ebd555ad6c7b6920b38bd1e0b3.tar.bz2 historical-672dee4e1108a9ebd555ad6c7b6920b38bd1e0b3.zip |
close bug 12698 -- don't trap on TSTP to allow ^Z of script (job control)
-rwxr-xr-x | scripts/bootstrap.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 3a13436b1f5a..ab6b99c0eabd 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/sh # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.36 2003/01/06 07:16:50 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.37 2003/01/15 01:47:33 drobbins Exp $ # IMPORTANT NOTE: # This script now accepts an optional argument. @@ -64,7 +64,8 @@ cleanup() { # Trap ctrl-c and stuff. This should fix the users make.conf # not being restored. -trap "cleanup" INT QUIT TSTP +trap "cleanup" INT QUIT +#TSTP messes ^Z of bootstrap up, so we don't trap it anymore. # USE may be set from the environment so we back it up for later. export ORIGUSE="`${PYTHON} -c 'import portage; print portage.settings["USE"];'`" |