Lines 31-36
Link Here
|
31 |
# First read /etc/profile and .profile |
31 |
# First read /etc/profile and .profile |
32 |
test -f /etc/profile && . /etc/profile |
32 |
test -f /etc/profile && . /etc/profile |
33 |
test -f "$HOME/.profile" && . "$HOME/.profile" |
33 |
test -f "$HOME/.profile" && . "$HOME/.profile" |
|
|
34 |
# Prevent XDG_DATA_DIRS breakage due bug #204310 |
35 |
export XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/share/gdm |
34 |
# Second read /etc/xprofile and .xprofile for X specific setup |
36 |
# Second read /etc/xprofile and .xprofile for X specific setup |
35 |
test -f /etc/xprofile && . /etc/xprofile |
37 |
test -f /etc/xprofile && . /etc/xprofile |
36 |
test -f "$HOME/.xprofile" && . "$HOME/.xprofile" |
38 |
test -f "$HOME/.xprofile" && . "$HOME/.xprofile" |