From d0a40adea0be5005132befbd5a355f592a4a35ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 26 May 2018 19:01:19 +0200 Subject: starttde: Always add paths because folders can be created by installing packages during a session. This resolves bug 2395 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- starttde | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/starttde b/starttde index 15e776f6a..c237652c7 100755 --- a/starttde +++ b/starttde @@ -177,7 +177,7 @@ if [ "$TDEROOTHOME" = "" ]; then fi # Modify the following environment variables only as necessary. -if [ -d $TDEDIR/games ]; then + if ! is_in_path PATH "$TDEDIR/games" ; then # Respect the traditional path order. Don't blindly place $TDEDIR/games # first in the path. Only place $TDEDIR/games before /usr/games. If packagers @@ -191,8 +191,7 @@ if [ -d $TDEDIR/games ]; then export PATH=$TDEDIR/games:$PATH fi fi -fi -if [ -d $TDEDIR/bin ]; then + if ! is_in_path PATH "$TDEDIR/bin" ]; then # Respect the traditional path order. Don't blindly place $TDEDIR/bin # first in the path. Only place $TDEDIR/bin before /usr/bin. This order is @@ -206,8 +205,7 @@ if [ -d $TDEDIR/bin ]; then export PATH=$TDEDIR/bin:$PATH fi fi -fi -if [ -d $TDEDIR/share/man ]; then + if [ -x /usr/bin/manpath ]; then if [ "`manpath 2>/dev/null | grep \"$TDEDIR/share/man\"`" = "" ]; then export MANPATH=$TDEDIR/share/man:$MANPATH @@ -217,7 +215,7 @@ if [ -d $TDEDIR/share/man ]; then export MANPATH=$TDEDIR/share/man:$MANPATH fi fi -fi + if [ "$XDG_CONFIG_DIRS" = "" ]; then if [ -d /etc/xdg ]; then -- cgit v1.2.3