summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 855893cb2d0d4..a5545e747898e 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -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) {