From: carbonated beverage <ramune@net-ronin.org>
To: linux-kernel@vger.kernel.org
Subject: minor TMPDIR fix
Date: Wed, 3 Sep 2003 12:27:26 -0700 [thread overview]
Message-ID: <20030903192726.GA23442@net-ronin.org> (raw)
Hi,
Just a small fix to make the makeman script use $TMPDIR from the
environment if it's set.
Sent it to the listed maintainer, mec, but he said he's not active
in the kernel development anymore. I'll send out a patch to update the
MAINTAINERS file if anyone can tell me who it should be set to.
-- DN
Daniel
--- 1.2/scripts/makeman Thu Aug 14 18:17:42 2003
+++ edited/scripts/makeman Wed Sep 3 01:51:53 2003
@@ -12,7 +12,7 @@
## $3 -- the filename which contained the sgmldoc output
## (I need this so I know which manpages to convert)
-my($LISTING, $GENERATED, $INPUT, $OUTPUT, $front, $mode, $filename);
+my($LISTING, $GENERATED, $INPUT, $OUTPUT, $front, $mode, $filename, $tmpdir);
if($ARGV[0] eq ""){
die "Usage: makeman [convert | install] <dir> <file>\n";
@@ -132,9 +132,13 @@
}
}
close INPUT;
-
- system("cd $ARGV[1]; docbook2man $filename.sgml; mv $filename.9 /tmp/$$.9\n");
- open GENERATED, "< /tmp/$$.9";
+ if($ENV{'TMPDIR'}) {
+ $tmpdir=$ENV{'TMPDIR'};
+ } else {
+ $tmpdir="/tmp";
+ }
+ system("cd $ARGV[1]; docbook2man $filename.sgml; mv $filename.9 $tmpdir/$$.9\n");
+ open GENERATED, "< $tmpdir/$$.9";
open OUTPUT, "> $ARGV[1]/$filename.9";
print OUTPUT "$front";
@@ -146,7 +150,7 @@
close GENERATED;
system("gzip -f $ARGV[1]/$filename.9\n");
- unlink("/tmp/$filename.9");
+ unlink("$tmpdir/$filename.9");
}
}
elsif($ARGV[0] eq "install"){
next reply other threads:[~2003-09-03 19:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-03 19:27 carbonated beverage [this message]
2003-09-03 20:07 ` Sam Ravnborg
2003-09-04 12:50 ` Michael Still
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030903192726.GA23442@net-ronin.org \
--to=ramune@net-ronin.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®