mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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:
parent
c82a9c8e10
commit
376895d34c
1 changed files with 1 additions and 1 deletions
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue