From: Otto Moerbeek Date: Wed, 22 Jan 2025 12:12:53 +0000 (+0100) Subject: Run autoconf -vi to create configure script (so that autotool builds get VERSION) X-Git-Tag: dnsdist-2.0.0-alpha1~127^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e256fe49528120e1f0675e2c5ebd0e0be9c5044;p=thirdparty%2Fpdns.git Run autoconf -vi to create configure script (so that autotool builds get VERSION) --- diff --git a/pdns/recursordist/meson-dist-script.sh b/pdns/recursordist/meson-dist-script.sh index 7d935a8713..09970c260e 100755 --- a/pdns/recursordist/meson-dist-script.sh +++ b/pdns/recursordist/meson-dist-script.sh @@ -14,3 +14,14 @@ symlinks=$(find . -type l) # Extract them over the existing symbolic links tar -C "$MESON_SOURCE_ROOT" -hcf - $symlinks | tar -xf - -C "$MESON_PROJECT_DIST_ROOT" +# Run autoconf for people using autotools to build, this creates a configure script with VERSION set +echo Running autoreconf -vi so distfile is still usable for autotools building +# Run autoconf for people using autotools to build, this creates a configure sc +autoreconf -vi + +# Generate man pages +cd "$MESON_PROJECT_BUILD_ROOT" +ninja man-pages +cp -p rec-man-pages/*.1 "$MESON_PROJECT_DIST_ROOT" + +