From: Perl 5 Porters Date: Mon, 17 Jun 1996 02:09:35 +0000 (+0000) Subject: Change name in Makefile.PL for clarity X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=747676005ec75b61518b08cf6e025c417d762dae;p=p5sagit%2Fp5-mst-13.2.git Change name in Makefile.PL for clarity --- diff --git a/ext/SDBM_File/sdbm/Makefile.PL b/ext/SDBM_File/sdbm/Makefile.PL index b4bd6f9..a64cb13 100644 --- a/ext/SDBM_File/sdbm/Makefile.PL +++ b/ext/SDBM_File/sdbm/Makefile.PL @@ -1,13 +1,12 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'SDBM_File', - 'LINKTYPE' => 'static', - 'DEFINE' => '-DSDBM -DDUFF', - 'SKIP' => [qw(static static_lib dynamic dynamic_lib)], - 'clean' - => {'FILES' => 'dbu libsdbm.a dbd dba dbe x-dbu *.dir *.pag'}, - 'H' => [qw(tune.h sdbm.h pair.h $(PERL_INC)/config.h)], - 'C' => [qw(sdbm.c pair.c hash.c)] + NAME => 'SDBM_File/sdbm', # doesn't matter what the name is here + LINKTYPE => 'static', + DEFINE => '-DSDBM -DDUFF', + SKIP => [qw(static static_lib dynamic dynamic_lib)], + clean => {'FILES' => 'dbu libsdbm.a dbd dba dbe x-dbu *.dir *.pag'}, + H => [qw(tune.h sdbm.h pair.h $(PERL_INC)/config.h)], + C => [qw(sdbm.c pair.c hash.c)] );