From 458c23e5aad50d424165d576e7e8046b04a2db9e Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 19 Dec 2023 11:54:23 +0100 Subject: [PATCH] autogen: conditionally invoke configure at the end This is backwards-compatible and core.git autogen.sh executes configure, so it eliminates a pointless difference. Signed-off-by: Miklos Vajna Change-Id: I897bd2f6464201a19e26e55006cd52727abdfc41 --- autogen.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/autogen.sh b/autogen.sh index d256534c86..c7303b2338 100755 --- a/autogen.sh +++ b/autogen.sh @@ -31,8 +31,22 @@ autoreconf || failed "autoreconf" scripts/refresh-git-hooks || failed "refresh-git-hooks" +if [ $# -gt 0 ]; then + # If we got parameters, we can execute configure directly. + echo -n "Result: All went OK, running $srcdir/configure " + for arg in "$@" + do + echo -n "'${arg}' " + done + echo "now." + $srcdir/configure "$@" || failed "configure" + exit 0 +fi + cat << EOF Result: All went OK, please run $srcdir/configure (with the appropriate parameters) now. EOF + +# vim:set shiftwidth=4 softtabstop=4 expandtab: