From 1cc8413aaf5f8fa6595aece1933462c096e88639 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 29 Apr 2024 06:41:05 +0200 Subject: Adding upstream version 2.4+really2.3. Signed-off-by: Daniel Baumann --- Documentation/update-docs.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Documentation/update-docs.sh (limited to 'Documentation/update-docs.sh') diff --git a/Documentation/update-docs.sh b/Documentation/update-docs.sh new file mode 100755 index 0000000..87a73cc --- /dev/null +++ b/Documentation/update-docs.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +BUILDDIR="$(mktemp -d)" +trap 'rm -rf -- $BUILDDIR' EXIT + +meson $BUILDDIR -Ddocs=all -Ddocs-build=true +ninja -C $BUILDDIR +find $BUILDDIR/Documentation -maxdepth 1 \ + \( -name '*.1' -o -name '*.html' \) \ + -exec cp {} Documentation/ \; -- cgit v1.2.3