about summary refs log tree commit diff
path: root/pkgs/development/libraries/x264
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-30 10:47:53 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-30 10:47:53 +0000
commit376895d34c16c5d67e329b4f115a6002cf62e565 (patch)
tree5b536370cba56287dfd78be8005ed1d9d3113fbd /pkgs/development/libraries/x264
parentc82a9c8e104c7c49308c6fa8cab2f35878ba8364 (diff)
downloadnixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar.gz
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar.bz2
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar.lz
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar.xz
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.tar.zst
nixlib-376895d34c16c5d67e329b4f115a6002cf62e565.zip
Fixing the nixpkgs tarball build: I used 'stdenv.bash', where I should use 'stdenv.shell'.
svn path=/nixpkgs/trunk/; revision=21453
Diffstat (limited to 'pkgs/development/libraries/x264')
-rw-r--r--pkgs/development/libraries/x264/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix
index 606fd825d161..e6fbb6d5cc58 100644
--- a/pkgs/development/libraries/x264/default.nix
+++ b/pkgs/development/libraries/x264/default.nix
@@ -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" ];