From b1991f7121a803a0a49c9cd0288a4f9050eeb70c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 1 Jan 2020 09:57:54 +0000 Subject: [PATCH] build: fix xapian-* manpage generation extman.perl requires the name of its target --- Makefile.PL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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/; -- 2.44.0