Fixing the nixpkgs tarball build: I used 'stdenv.bash', where I should use 'stdenv.shell'.

svn path=/nixpkgs/trunk/; revision=21453
This commit is contained in:
Lluís Batlle i Rossell 2010-04-30 10:47:53 +00:00
parent c82a9c8e10
commit 376895d34c

View File

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
patchPhase = ''
sed -i s,/bin/bash,${stdenv.bash}/bin/bash, configure version.sh
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
'';
configureFlags = [ "--disable-asm" "--enable-shared" ];