From: Eric Wong Date: Sun, 6 Oct 2019 23:01:49 +0000 (+0000) Subject: Makefile.PL: add dependency on MANIFEST contents X-Git-Tag: v1.2.0~56 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=4c20de0694d06ff3a5f963d7f51d509319060b50 Makefile.PL: add dependency on MANIFEST contents This prevents breakage when running installed scripts when a user fetches from git and forgets to run "perl Makefile.PL" before "make install". --- diff --git a/Makefile.PL b/Makefile.PL index 8daeb4fb..39b9b198 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -90,5 +90,8 @@ check:: pure_all check-manifest lib/PublicInbox/UserContent.pm :: contrib/css/216dark.css \$(PERL) -I lib \$@ \$? +# Ensure new .pm files will always be installed: +Makefile.PL :: MANIFEST + EOF }