* Fix stdenv evaluation - use ${stdenv.shell} instead of

${stdenv.bash}/bin/bash.

svn path=/nixpkgs/trunk/; revision=19723
This commit is contained in:
Eelco Dolstra
2010-01-29 00:17:59 +00:00
parent 8a57c8bf35
commit 0a882d423b
3 changed files with 4 additions and 2 deletions
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
patches = [ ./blas-link.patch ];
configurePhase = ''
echo >make.inc "SHELL = ${stdenv.bash}/bin/bash"
echo >make.inc "SHELL = ${stdenv.shell}"
echo >>make.inc "PLAT ="
echo >>make.inc "FORTRAN = gfortran"
echo >>make.inc "OPTS = -O2 -fPIC"