about summary refs log tree commit diff
path: root/pkgs/tools/misc/man-db
diff options
context:
space:
mode:
authorDavHau <hsngrmpf+github@gmail.com>2021-04-30 14:05:12 +0700
committerYt <raphael@megzari.com>2022-04-17 13:22:08 -0400
commitfe7fb4b87fe1d3160b1dcb9ec70c2371ac2665a2 (patch)
treec22b7d0bd6b8ada11a7593fdd6efe50435d1bda8 /pkgs/tools/misc/man-db
parent6f6daf3a6a5be74b70ba2bd270ff19824824c3a5 (diff)
man-db: use autoreconfHook;
Diffstat (limited to 'pkgs/tools/misc/man-db')
-rw-r--r--pkgs/tools/misc/man-db/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix
index e5364ab4f5760..ba6b99c4d9be7 100644
--- a/pkgs/tools/misc/man-db/default.nix
+++ b/pkgs/tools/misc/man-db/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "doc" ];
   outputMan = "out"; # users will want `man man` to work
 
-  nativeBuildInputs = [ autoconf automake gettext groff libtool makeWrapper pkg-config zstd ];
+  nativeBuildInputs = [ autoreconfHook gettext groff libtool makeWrapper pkg-config zstd ];
   buildInputs = [ libpipeline db groff ]; # (Yes, 'groff' is both native and build input)
   checkInputs = [ libiconv /* for 'iconv' binary */ ];
 
@@ -52,9 +52,6 @@ stdenv.mkDerivation rec {
 
 
   preConfigure = ''
-    # need to recreate configure script due to substitutions in postPatch
-    ./bootstrap --gnulib-srcdir=${gnulib.src} --no-git
-
     # deal with autoconf 2.70 bug: https://lists.gnu.org/archive/html/bug-autoconf/2020-12/msg00036.html
     # can be removed once autoconf 2.71 is merged
     patch < ${./fix-configure.patch}