about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-01-01 09:57:54 +0000
committerEric Wong <e@80x24.org>2020-01-02 02:15:52 +0000
commitb1991f7121a803a0a49c9cd0288a4f9050eeb70c (patch)
treece7dc26e4a92568f780408fcf324467ed9ea35fb
parentef592197088078be53b73050ba5c1bee2728c090 (diff)
downloadpublic-inbox-b1991f7121a803a0a49c9cd0288a4f9050eeb70c.tar.gz
extman.perl requires the name of its target
-rw-r--r--Makefile.PL3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 0f50a658..e9e4e2ab 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -71,7 +71,8 @@ $v->{xdocs} = [ map { "Documentation/.x/.$_.txt" } @xman ];
 $v->{xdocs_html} = [ map { "Documentation/.x/.$_.html" } @xman ];
 for (@{$v->{xdocs}}) {
         $t->{"$_ : | Documentation/.x"} = [
-                '$(PERL) -w Documentation/extman.perl >$@',
+                '$(PERL) -w Documentation/extman.perl $@ >$@+',
+                'mv $@+ $@'
         ];
         my $html = $_;
         $html =~ s/\.txt\z/.html/;