[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * autogen.sh: Run autoreconf under tp/Texinfo/XS/
From: |
Gavin D. Smith |
Subject: |
branch master updated: * autogen.sh: Run autoreconf under tp/Texinfo/XS/ with AUTOPOINT=true. From Bruno. |
Date: |
Tue, 13 Aug 2024 18:44:10 -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 61e335e039 * autogen.sh: Run autoreconf under tp/Texinfo/XS/ with
AUTOPOINT=true. From Bruno.
61e335e039 is described below
commit 61e335e039081f55453154ba784d65634ae46203
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Tue Aug 13 23:43:57 2024 +0100
* autogen.sh: Run autoreconf under tp/Texinfo/XS/ with
AUTOPOINT=true. From Bruno.
---
ChangeLog | 5 +++++
autogen.sh | 5 +++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f7eff3ee43..041b2874cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-08-13 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * autogen.sh: Run autoreconf under tp/Texinfo/XS/ with
+ AUTOPOINT=true. From Bruno.
+
2024-08-10 Patrice Dumas <pertusus@free.fr>
Update man/pod2texi.1, po*/*.po and gnulib generated gperf files
diff --git a/autogen.sh b/autogen.sh
index a2f530d46f..73ce74fa06 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -42,15 +42,16 @@ fi
: ${AUTOHEADER=autoheader}
: ${AUTOMAKE=automake}
: ${AUTOCONF=autoconf}
-cmd="$ACLOCAL -I gnulib/m4 && $AUTOCONF && $AUTOHEADER && $AUTOMAKE"
+cmd="$ACLOCAL -I gnulib/m4 && $AUTOCONF && $AUTOHEADER && $AUTOMAKE -a -c"
echo " $cmd $*"
$chicken eval $cmd "$@" || exit 1
: ${LIBTOOLIZE=libtoolize}
cmd="(cd tp/Texinfo/XS && ${LIBTOOLIZE} \
- && $ACLOCAL -I gnulib/m4 && $AUTOCONF && $AUTOHEADER && $AUTOMAKE)"
+ && AUTOPOINT=true autoreconf --force --verbose --install)"
echo " $cmd"
$chicken eval $cmd || exit 1
+# We set AUTOPOINT=true to avoid rewriting files with older versions.
echo
echo "Now run configure with your desired options, for instance:"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * autogen.sh: Run autoreconf under tp/Texinfo/XS/ with AUTOPOINT=true. From Bruno.,
Gavin D. Smith <=