From 48e4b8f573e3f5655012d29412e6e3f128185534 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Fri, 15 May 2009 07:55:47 +0000 Subject: [PATCH] * Synced with trunk @ 15370 svn path=/nixos/branches/modular-nixos/; revision=15611 --- etc/bashrc.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/etc/bashrc.sh b/etc/bashrc.sh index a2bb83f9da9..55820a31a63 100644 --- a/etc/bashrc.sh +++ b/etc/bashrc.sh @@ -47,7 +47,9 @@ for i in $NIX_PROFILES; do # !!! reverse export ACLOCAL_PATH="$i/share/aclocal:$ACLOCAL_PATH" fi - export PERL5LIB="$i/lib/site_perl:$PERL5LIB" + # "lib/site_perl" is for backwards compatibility with packages + # from Nixpkgs <= 0.12. + export PERL5LIB="$i/lib/perl5/site_perl:$i/lib/site_perl:$PERL5LIB" # GStreamer. export GST_PLUGIN_PATH="$i/lib/gstreamer-0.10:$GST_PLUGIN_PATH"