]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
treewide: "require" + "use" cleanup and docs
[public-inbox.git] / Makefile.PL
index e9e4e2abee9fd8befdb4b1b47245d4f0c41f6d0f..3492d9653ece202ae1061970798828f4c9a3d78e 100644 (file)
@@ -137,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...
@@ -167,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)