Only take commands that start the line they are observed on.
[third_party/subunit] / perl / Makefile.PL.in
1 use ExtUtils::MakeMaker;
2 WriteMakefile(
3     'INSTALL_BASE' => '@prefix@',
4     'NAME'      => 'Subunit',
5     'VERSION' => '@SUBUNIT_VERSION@',
6     'test' => { 'TESTS' => 'tests/*.pl' },
7     'PMLIBDIRS' => [ 'lib' ],
8     'EXE_FILES' => [ '@abs_srcdir@/subunit-diff' ],
9 );
10 sub MY::postamble {
11 <<'EOT';
12 check: # test
13
14 uninstall_distcheck:
15         rm -fr $(DESTINSTALLARCHLIB)
16
17 VPATH = @srcdir@
18 .PHONY: uninstall_distcheck
19 EOT
20 }