summary refs log tree commit diff
path: root/pkgs/development/tools/misc/libtool
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-20 22:56:58 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-20 22:56:58 +0000
commita5fee3325a61b9ae33a0132a653d19079710002e (patch)
treefa8f99e4a6bc671a5fc0f2a9153d385d59b342be /pkgs/development/tools/misc/libtool
parentb27cf66ee28bc9fdec9a36fb00e019d5c0b57402 (diff)
downloadnixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar.gz
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar.bz2
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar.lz
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar.xz
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.tar.zst
nixpkgs-a5fee3325a61b9ae33a0132a653d19079710002e.zip
Fixing some things on the gcc-cross-wrapper (libc was not properly added to the
linking path), and with this achieved bash being cross-compilable.
I fixed the few expressions involved in bash building, so they have well stated
native and non-native inputs.

I also tried to cross-build guile, and with this I found a problem in the
actual cross-gcc: it calls the binutils ld, instead of the ld wrapper. This
way, the programs/shared_libraries don't get the proper -rpath.


svn path=/nixpkgs/branches/stdenv-updates/; revision=18497
Diffstat (limited to 'pkgs/development/tools/misc/libtool')
-rw-r--r--pkgs/development/tools/misc/libtool/libtool2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/libtool/libtool2.nix b/pkgs/development/tools/misc/libtool/libtool2.nix
index 0119515740d..84921daf810 100644
--- a/pkgs/development/tools/misc/libtool/libtool2.nix
+++ b/pkgs/development/tools/misc/libtool/libtool2.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "1bmpp31sfjl3nzj8psvnsqrrv4gwnqzii8dxpxr6djz508yavsv6";
   };
 
-  buildInputs = [ lzma m4 perl ];
+  buildNativeInputs = [ lzma m4 perl ];
 
   unpackCmd = "lzma -d < $src | tar xv";