[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * autogen.sh, * tp/tests/Makefile.am: use tar cf
From: |
Gavin D. Smith |
Subject: |
branch master updated: * autogen.sh, * tp/tests/Makefile.am: use tar cf instead of -cf, etc. From Patrice. |
Date: |
Sun, 17 Nov 2024 04:41:26 -0500 |
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 0d71a507af * autogen.sh, * tp/tests/Makefile.am: use tar cf instead of
-cf, etc. From Patrice.
0d71a507af is described below
commit 0d71a507afab84fe58564c12c9df78e3b378212c
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sun Nov 17 09:41:17 2024 +0000
* autogen.sh,
* tp/tests/Makefile.am: use tar cf instead of -cf, etc. From Patrice.
---
ChangeLog | 5 +++++
autogen.sh | 2 +-
tp/tests/Makefile.am | 6 +++---
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 54d4ed9080..ed02e494f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-11-17 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * autogen.sh,
+ * tp/tests/Makefile.am: use tar cf instead of -cf, etc. From Patrice.
+
2024-11-16 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/convert/html_prepare_converter.c
diff --git a/autogen.sh b/autogen.sh
index ed10cc22cc..f492f47bf9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -26,7 +26,7 @@ echo " $cmd"
$chicken eval $cmd || exit 1
# Same rule in tp/tests/Makefile.am
-cmd="(cd tp/tests/input && tar -c -f non_ascii.tar non_ascii)"
+cmd="(cd tp/tests/input && tar cf non_ascii.tar non_ascii)"
echo " $cmd"
$chicken eval $cmd || exit 1
diff --git a/tp/tests/Makefile.am b/tp/tests/Makefile.am
index 04e853fc2c..e363361533 100644
--- a/tp/tests/Makefile.am
+++ b/tp/tests/Makefile.am
@@ -93,14 +93,14 @@ non_ascii_input = \
# It is also regenerated by autogen.sh at top level.
$(srcdir)/input/non_ascii.tar:
cd $(srcdir)/input && \
- tar -c -f non_ascii.tar non_ascii
+ tar cf non_ascii.tar non_ascii
check_DATA += built_input/non_ascii
built_input/non_ascii: input/non_ascii.tar
rm -rf $@ && mkdir -p $@ && \
cd built_input && \
- tar -xm -f "$(abs_srcdir)/input/non_ascii.tar"
-# tar -m discards file modification dates from the archive.
+ tar xmf "$(abs_srcdir)/input/non_ascii.tar"
+# tar m discards file modification dates from the archive.
EXTRA_DIST = run_parser_all.sh parser_tests.sh escape_file_names.pl \
$(one_test_files_generated_list) coverage_macro.texi \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * autogen.sh, * tp/tests/Makefile.am: use tar cf instead of -cf, etc. From Patrice.,
Gavin D. Smith <=