]> Sergey Matveev's repositories - public-inbox.git/commit
Makefile.PL: MANIFEST dependency fix
authorEric Wong <e@80x24.org>
Wed, 27 Nov 2019 11:07:18 +0000 (11:07 +0000)
committerEric Wong <e@80x24.org>
Wed, 27 Nov 2019 11:57:14 +0000 (11:57 +0000)
commitd8c459e4a2b4f9da3239d16b649cfeba3f663a7f
tree115f131a8004c44131ef56a516a711da931ab578
parentd6674af04cb74a4efd513d938bed8bf7ab2838eb
Makefile.PL: MANIFEST dependency fix

We need to force an update to Makefile (not Makefile.PL) when
MANIFEST changes.  Since "Makefile" (aka. "$(FIRST_MAKEFILE)")
is already a single-colon make target; we can't create a
double-colon rule to augment it.  So we'll continue using a
"Makefile.PL" rule, but have it recreate the resulting Makefile

Finally, change the "check" target to use "prove -b" instead of
"prove -l" so we test against "blib/lib", since what's in the
"blib" dir will be installed.

Fixes: 4c20de0694d06ff3 ("Makefile.PL: add dependency on MANIFEST contents")
Makefile.PL