]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Run autoconf -vi to create configure script (so that autotool builds get VERSION)
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 22 Jan 2025 12:12:53 +0000 (13:12 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 27 Jan 2025 08:13:34 +0000 (09:13 +0100)
pdns/recursordist/meson-dist-script.sh

index 7d935a8713ce063236bd2a6bdd4b9194aba4639c..09970c260e0c4365ba8d6e5f9228422639007e2d 100755 (executable)
@@ -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"
+
+