man-db: use autoreconfHook;

This commit is contained in:
DavHau 2021-04-30 14:05:12 +07:00 committed by Yt
parent 6f6daf3a6a
commit fe7fb4b87f

View file

@ -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}