From cf178685aca107aa37c748de11da01562e78c46c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 15 Jun 2024 11:41:34 +0200 Subject: Adding upstream version 5.6.2. Signed-off-by: Daniel Baumann --- autogen.sh | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index d5cec1b..3ac75e8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,12 +1,10 @@ #!/bin/sh +# SPDX-License-Identifier: 0BSD ############################################################################### # # Author: Lasse Collin # -# This file has been put into the public domain. -# You can do whatever you want with this file. -# ############################################################################### set -e -x @@ -19,14 +17,12 @@ ${AUTOCONF:-autoconf} ${AUTOHEADER:-autoheader} ${AUTOMAKE:-automake} -acf --foreign -# Generate the translated man pages and the doxygen documentation if the -# "po4a" and "doxygen" tools are available. +# Generate the translated man pages if the "po4a" tool is available. # This is *NOT* done by "autoreconf -fi" or when "make" is run. -# Pass --no-po4a or --no-doxygen to this script to skip these steps. -# It can be useful when you know that po4a or doxygen aren't available and +# Pass --no-po4a o this script to skip this step. +# It can be useful when you know that po4a isn't available and # don't want autogen.sh to exit with non-zero exit status. generate_po4a="y" -generate_doxygen="y" for arg in "$@" do @@ -34,10 +30,6 @@ do "--no-po4a") generate_po4a="n" ;; - - "--no-doxygen") - generate_doxygen="n" - ;; esac done @@ -47,10 +39,4 @@ if test "$generate_po4a" != "n"; then cd .. fi -if test "$generate_doxygen" != "n"; then - cd doxygen - sh update-doxygen - cd .. -fi - exit 0 -- cgit v1.2.3