diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-06-15 04:02:50 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-06-15 04:02:50 +0000 |
commit | 623ca9eadb8a5bb401606c7f61ae18a16034a81f (patch) | |
tree | 581c5564cefa3680029b9dea130abd79641c96aa /x11-base/xfree/files/4.3.0 | |
parent | posixify the chooser.sh script (diff) | |
download | gentoo-2-623ca9eadb8a5bb401606c7f61ae18a16034a81f.tar.gz gentoo-2-623ca9eadb8a5bb401606c7f61ae18a16034a81f.tar.bz2 gentoo-2-623ca9eadb8a5bb401606c7f61ae18a16034a81f.zip |
posixify the chooser.sh script
Diffstat (limited to 'x11-base/xfree/files/4.3.0')
-rw-r--r-- | x11-base/xfree/files/4.3.0/chooser.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-base/xfree/files/4.3.0/chooser.sh b/x11-base/xfree/files/4.3.0/chooser.sh index 1e25d530f509..46dbc677d10e 100644 --- a/x11-base/xfree/files/4.3.0/chooser.sh +++ b/x11-base/xfree/files/4.3.0/chooser.sh @@ -2,13 +2,13 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/x11-base/xfree/files/4.3.0/chooser.sh,v 1.1 2003/02/28 04:28:29 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xfree/files/4.3.0/chooser.sh,v 1.2 2003/06/15 04:02:47 seemant Exp $ # If $XSESSION is "", source first /etc/conf.d/basic, and then /etc/rc.conf if [ -z "${XSESSION}" ] then - [ -f /etc/conf.d/basic ] && source /etc/conf.d/basic - [ -f /etc/rc.conf ] && source /etc/rc.conf + [ -f /etc/conf.d/basic ] && . /etc/conf.d/basic + [ -f /etc/rc.conf ] && . /etc/rc.conf fi # Find a match for $XSESSION in /etc/X11/Sessions |