Apparently libtool cannot be installed separately from autoconf
and automake. Copying the files in $libtool/share/aclocal to $autoconf/share/aclocal does not work (and causes collisions when installing the tools in the user environment). The solution seems to be to install the three distributions in one single $out directory, i.e., consider them as one package. svn path=/nixpkgs/trunk/; revision=597
This commit is contained in:
@@ -140,6 +140,13 @@
|
||||
perl = perl;
|
||||
};
|
||||
|
||||
autoconflibtool = (import ../development/tools/misc/autoconf/autoconf-libtool.nix) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
m4 = gnum4;
|
||||
perl = perl;
|
||||
};
|
||||
|
||||
automake = (import ../development/tools/misc/automake) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
@@ -155,10 +162,10 @@
|
||||
};
|
||||
|
||||
autotools = {
|
||||
automake = automake;
|
||||
autoconf = autoconf;
|
||||
automake = autoconflibtool;
|
||||
autoconf = autoconflibtool;
|
||||
make = gnumake;
|
||||
libtool = libtool;
|
||||
libtool = autoconflibtool;
|
||||
};
|
||||
|
||||
pkgconfig = (import ../development/tools/misc/pkgconfig) {
|
||||
|
||||
Reference in New Issue
Block a user