2017-06-14 11:06:57 +00:00
|
|
|
---
|
2018-05-03 09:16:53 +00:00
|
|
|
texmf-dist/scripts/latex2man/latex2man | 3 ++-
|
|
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
2017-06-14 11:06:57 +00:00
|
|
|
|
|
|
|
--- texmf-dist/scripts/latex2man/latex2man
|
2019-05-22 06:46:56 +00:00
|
|
|
+++ texmf-dist/scripts/latex2man/latex2man 2019-05-10 09:09:23.080680391 +0000
|
|
|
|
@@ -21,6 +21,7 @@ require 5.0004_03;
|
2017-06-14 11:06:57 +00:00
|
|
|
|
|
|
|
use Getopt::Std;
|
2019-05-22 06:46:56 +00:00
|
|
|
use File::Basename;
|
2017-06-14 11:06:57 +00:00
|
|
|
+use File::Temp qw/tempfile/;
|
2018-05-03 09:16:53 +00:00
|
|
|
no warnings 'once';
|
2017-06-14 11:06:57 +00:00
|
|
|
# use strict 'vars';
|
|
|
|
|
2019-05-22 06:46:56 +00:00
|
|
|
@@ -31,7 +32,7 @@ sub date2str;
|
|
|
|
$VERSION = "1.29";
|
|
|
|
$DATE = date2str ('$Date: 2018/11/25 13:05:37 $' =~ m|(\d+/\d+/\d+)|);
|
2017-06-14 11:06:57 +00:00
|
|
|
|
|
|
|
-$tmp = "/tmp/$CMD.$$";
|
2019-05-22 06:46:56 +00:00
|
|
|
+(undef, $tmp) = tempfile();
|
2017-06-14 11:06:57 +00:00
|
|
|
|
|
|
|
##################################################################
|
|
|
|
# check option and arguments
|