[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * autogen.sh: Do not append command line argument
From: |
Gavin D. Smith |
Subject: |
branch master updated: * autogen.sh: Do not append command line arguments ("$@") to automake command line. The purpose of this is unknown. It meant that an incorrect "-n" flag would be printed in "chicken" mode. |
Date: |
Thu, 15 Aug 2024 15:54:13 -0400 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new c5f2f6d2d1 * autogen.sh: Do not append command line arguments ("$@")
to automake command line. The purpose of this is unknown. It meant that an
incorrect "-n" flag would be printed in "chicken" mode.
c5f2f6d2d1 is described below
commit c5f2f6d2d106cfd834aa1afccf732b41f17ebc59
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Aug 15 20:53:57 2024 +0100
* autogen.sh: Do not append command line arguments ("$@") to
automake command line. The purpose of this is unknown. It
meant that an incorrect "-n" flag would be printed in "chicken"
mode.
---
ChangeLog | 7 +++++++
autogen.sh | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d81ad65193..3f919c474f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-08-15 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * autogen.sh: Do not append command line arguments ("$@") to
+ automake command line. The purpose of this is unknown. It
+ meant that an incorrect "-n" flag would be printed in "chicken"
+ mode.
+
2024-08-15 Gavin Smith <gavinsmith0123@gmail.com>
* tp/Texinfo/XS/pm_to_blib: Remove empty, apparently useless
diff --git a/autogen.sh b/autogen.sh
index 73ce74fa06..2ca7e68cf8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -43,8 +43,8 @@ fi
: ${AUTOMAKE=automake}
: ${AUTOCONF=autoconf}
cmd="$ACLOCAL -I gnulib/m4 && $AUTOCONF && $AUTOHEADER && $AUTOMAKE -a -c"
-echo " $cmd $*"
-$chicken eval $cmd "$@" || exit 1
+echo " $cmd"
+$chicken eval $cmd || exit 1
: ${LIBTOOLIZE=libtoolize}
cmd="(cd tp/Texinfo/XS && ${LIBTOOLIZE} \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * autogen.sh: Do not append command line arguments ("$@") to automake command line. The purpose of this is unknown. It meant that an incorrect "-n" flag would be printed in "chicken" mode.,
Gavin D. Smith <=