From 02f2b1f64011cbcf10bb887b9a3025f971d4cfc3 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Thu, 30 Sep 2010 05:08:33 +0000 Subject: [PATCH] Fix lots of KDE functionality svn path=/nixos/trunk/; revision=23992 --- modules/programs/bash/bashrc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/bash/bashrc.sh b/modules/programs/bash/bashrc.sh index d9e1c82c253..8d1e4833a2d 100644 --- a/modules/programs/bash/bashrc.sh +++ b/modules/programs/bash/bashrc.sh @@ -22,7 +22,7 @@ unset XDG_CONFIG_DIRS XDG_DATA_DIRS for i in $NIX_PROFILES; do # !!! reverse # We have to care not leaving an empty PATH element, because that means '.' to Linux - export PATH=$i/bin:$i/sbin${PATH:+:}$PATH + export PATH=$i/bin:$i/sbin:$i/lib/kde4/libexec${PATH:+:}$PATH export INFOPATH=$i/info:$i/share/info${INFOPATH:+:}$INFOPATH export PKG_CONFIG_PATH="$i/lib/pkgconfig${PKG_CONFIG_PATH:+:}$PKG_CONFIG_PATH"