]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
treewide: "require" + "use" cleanup and docs
[public-inbox.git] / Makefile.PL
index 0f50a65852ac6b083a3ca3a8a2f4472372433877..3492d9653ece202ae1061970798828f4c9a3d78e 100644 (file)
@@ -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/;
@@ -136,7 +137,7 @@ WriteMakefile(
                # All Perl installs I know about have these, but RH-based
                # distros make them separate even though 'perl' pulls them in
                'File::Path' => 0,
-               'File::Temp' => '0.19',
+               'File::Temp' => '0.19', # for ->tmpdir support
                'Getopt::Long' => 0,
                'Exporter' => 0,
                # ExtUtils::MakeMaker # this file won't run w/o it...
@@ -166,13 +167,14 @@ changed = \$(shell git ls-files -m)
 dsyn :: \$(addsuffix .syntax, \$(filter \$(changed), \$(syn_files)))
 
 check-manifest :: MANIFEST
-       if git ls-files >\$?.gen 2>&1; then diff -u \$? \$?.gen; fi
+       if test -e .git && git ls-files >\$?.gen 2>&1; then \\
+               diff -u \$? \$?.gen; fi
 
 # the traditional way running per-*.t processes:
 check-each :: pure_all check-manifest
        \$(EATMYDATA) \$(PROVE) --state=save -bvw -j\$(N)
 
-# lightly-tested way to runn tests, relies "--state=save" in check-each
+# lightly-tested way to run tests, relies "--state=save" in check-each
 # for best performance
 check-run :: pure_all check-manifest
        \$(EATMYDATA) \$(PROVE) -bvw t/run.perl :: -j\$(N)