diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-03 11:48:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-03 11:48:41 +0200 |
commit | 585c651951e5217daaac650865aa56cb4b6c74bb (patch) | |
tree | 787e2e759d08dc3a09df33b29dbe273e90d434b7 /gnu | |
parent | b6772a01e98e2d64a356698867fe4dd21252df11 (diff) | |
download | guix-585c651951e5217daaac650865aa56cb4b6c74bb.tar.gz guix-585c651951e5217daaac650865aa56cb4b6c74bb.zip |
system: Make sure /run/setuid-programs comes first in $PATH.
* gnu/system.scm (etc-directory) <bashrc>: Move /run/setuid-programs
first in $PATH.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 548184f5d5..ec54b8baf0 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -248,8 +248,8 @@ export LC_ALL=\"" locale "\" export TZ=\"" timezone "\" export TZDIR=\"" tzdata "/share/zoneinfo\" -export PATH=/run/setuid-programs:/run/current-system/profile/sbin -export PATH=$HOME/.guix-profile/bin:/run/current-system/profile/bin:$PATH +export PATH=$HOME/.guix-profile/bin:/run/current-system/profile/bin +export PATH=/run/setuid-programs:/run/current-system/profile/sbin:$PATH export CPATH=$HOME/.guix-profile/include:" profile "/include export LIBRARY_PATH=$HOME/.guix-profile/lib:" profile "/lib alias ls='ls -p --color' |