summaryrefslogtreecommitdiff
path: root/ext/SDBM_File/sdbm
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-06-17 02:09:35 +0000
committerCharles Bailey <bailey@genetics.upenn.edu>1996-06-17 02:09:35 +0000
commit747676005ec75b61518b08cf6e025c417d762dae (patch)
tree224fcf50c23b537dde6995ac6f5b91d859fe30e0 /ext/SDBM_File/sdbm
parent6b7a6f50d7e516e28a2661a3dc1df103ef73abf3 (diff)
downloadperl-747676005ec75b61518b08cf6e025c417d762dae.tar.gz
Change name in Makefile.PL for clarity
Diffstat (limited to 'ext/SDBM_File/sdbm')
-rw-r--r--ext/SDBM_File/sdbm/Makefile.PL15
1 files changed, 7 insertions, 8 deletions
diff --git a/ext/SDBM_File/sdbm/Makefile.PL b/ext/SDBM_File/sdbm/Makefile.PL
index b4bd6f9549..a64cb13e29 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)]
);