summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-01-16 00:40:40 +0300
committerIgor Pashev <pashev.igor@gmail.com>2012-01-16 00:40:40 +0300
commit8f6f8816e5864ec6ce272c067c16010f7bc51a1c (patch)
tree21cf8bc379572078793df8e0d6baae06d6288d01
parentf6fb8b0d084adbec3e0332307e95982a5daa6a92 (diff)
downloadbase-files-8f6f8816e5864ec6ce272c067c16010f7bc51a1c.tar.gz
Removed /bin from default PATH (/bin is a symlink to /usr/bin)
-rw-r--r--share/profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/profile b/share/profile
index c9207fc..0bce790 100644
--- a/share/profile
+++ b/share/profile
@@ -2,9 +2,9 @@
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
- PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
+ PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin"
else
- PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
+ PATH="/usr/local/bin:/usr/bin:/usr/local/games:/usr/games"
fi
export PATH