[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Sat, 18 Jan 2025 18:50:03 -0500 (EST) |
branch: master
commit a70c5e601efe431d5584b48ce7737e90b1017cc7
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Jan 19 00:50:05 2025 +0100
Remove the tp/ctexi2any.pl wrapper it is not useful anymore
---
ChangeLog | 6 +++++-
tp/ctexi2any.pl | 18 ------------------
2 files changed, 5 insertions(+), 19 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 1281081696..f32c7f3a8c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2025-01-18 Patrice Dumas <pertusus@free.fr>
+
+ Remove the tp/ctexi2any.pl wrapper it is not useful anymore
+
2025-01-18 Patrice Dumas <pertusus@free.fr>
* tp/tests/run_parser_all.sh: do not systematically prepend $PERL -w
@@ -823,7 +827,7 @@
* tp/Texinfo/XS/convert/call_embed_perl.c (call_init_perl): set
PL_perl_destruct_level to 0 to decrease the time needed for the
destruction of the embedded Perl interpreter. Using
- PERL_DESTRUCT_LEVEL env variable to get usefull leak information with
+ PERL_DESTRUCT_LEVEL env variable to get useful leak information with
valgrind is still possible.
2025-01-07 Patrice Dumas <pertusus@free.fr>
diff --git a/tp/ctexi2any.pl b/tp/ctexi2any.pl
deleted file mode 100755
index 51b11a4f37..0000000000
--- a/tp/ctexi2any.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /usr/bin/env perl
-
-use strict;
-use File::Basename;
-
-
-my $command_dir;
-my $top_srcdir = $ENV{'top_srcdir'};
-if (defined($top_srcdir)) {
- $command_dir = "$top_srcdir/tp";
-} else {
- my ($real_command_name, $command_directory, $command_suffix)
- = fileparse($0, '.pl');
- $command_dir = $command_directory;
- $ENV{'top_srcdir'} = "$command_dir/..";
-}
-exec("${command_dir}/Texinfo/XS/ctexi2any", @ARGV);
-