From 4c848efc1aa7175a40ab4c01c1b5f843c612ae8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 10 Aug 2009 10:07:30 +0000 Subject: [PATCH] bashrc: Remove obsolete `aclocal' and `rpcgen' hacks. svn path=/nixos/trunk/; revision=16640 --- modules/programs/bash/bashrc.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/programs/bash/bashrc.sh b/modules/programs/bash/bashrc.sh index 445d35ba0d1..b180d352fdb 100644 --- a/modules/programs/bash/bashrc.sh +++ b/modules/programs/bash/bashrc.sh @@ -24,12 +24,6 @@ for i in $NIX_PROFILES; do # !!! reverse export INFOPATH=$i/info:$i/share/info:$INFOPATH export PKG_CONFIG_PATH="$i/lib/pkgconfig:$PKG_CONFIG_PATH" - # Automake's `aclocal' bails out if it finds non-existent directories - # in its path. !!! This has been fixed in the stdenv branch. - if [ -d "$i/share/aclocal" ]; then - export ACLOCAL_PATH="$i/share/aclocal:$ACLOCAL_PATH" - fi - # "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" @@ -67,6 +61,3 @@ alias ll="ls -l" alias l="ls -alh" alias which="type -p" - -# Help `rpcgen' find `cpp', assuming it's installed in the user's environment. -alias rpcgen="rpcgen -Y $HOME/.nix-profile/bin"