aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté <msabate@suse.com>2015-07-17 15:37:17 +0200
committerMiquel Sabaté <msabate@suse.com>2015-07-17 15:37:17 +0200
commit0a27043fb6de687faaccb5578976883593d6d18f (patch)
treede8a99c27d31ebfcc962b53e5be0f1e2f274e0f6
parentf827c0ea984c44f8dc5a4eac65b58532f765dce7 (diff)
downloaddotfiles-0a27043fb6de687faaccb5578976883593d6d18f.tar.gz
dotfiles-0a27043fb6de687faaccb5578976883593d6d18f.zip
bash: it's better to be safe than sorry
Otherwise whenever we upgrade to a binary change in Qt5 KDE will crash :D
-rw-r--r--bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc b/bashrc
index d8f07eb..2871a11 100644
--- a/bashrc
+++ b/bashrc
@@ -47,8 +47,8 @@ export KDEDIRS=$KDEDIR
export KF5_SRC=$HOME/Projects/kde/kf5
# Export the standard paths to include KDE
-export PATH=$KDEDIR/bin:/usr/local/heroku/bin:$PATH
-export LD_LIBRARY_PATH=$KDEDIR/lib:$LD_LIBRARY_PATH
+export PATH=/usr/local/heroku/bin:$PATH:$KDEDIR/bin
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$KDEDIR/lib
export XDG_DATA_DIRS=$XDG_DATA_DIRS:$KDEDIR/share
# Export the CMake paths so it searches for KDE in the right places