diff options
Diffstat (limited to 'sys-devel/gcc-config/files/gcc-config-1.3.7')
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.3.7 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys-devel/gcc-config/files/gcc-config-1.3.7 b/sys-devel/gcc-config/files/gcc-config-1.3.7 index fa74a9c55789..b8d7e6e065cc 100755 --- a/sys-devel/gcc-config/files/gcc-config-1.3.7 +++ b/sys-devel/gcc-config/files/gcc-config-1.3.7 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.7,v 1.2 2004/10/13 19:46:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.7,v 1.3 2004/10/26 03:14:01 vapier Exp $ # Author: Martin Schlemmer <azarah@gentoo.org> trap ":" INT QUIT TSTP @@ -10,6 +10,7 @@ source /etc/init.d/functions.sh || { echo "$0: Could not source /etc/init.d/functions.sh!" exit 1 } +umask 022 usage() { cat << "USAGE_END" @@ -182,6 +183,7 @@ switch_profile() { GCC_BIN_PATH="${PATH}" # Fix environment source /etc/profile + umask 022 # These might not be installed, and we want to update the mtime # for ccache and distcc anyhow ... |