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:
Eelco Visser
2003-12-23 21:31:06 +00:00
parent b4ce40af2b
commit d5ec705667
5 changed files with 75 additions and 4 deletions

View File

@@ -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) {