diff options
author | Tim Bunce <TimBunce@ig.ac.uk> | 1998-03-04 16:31:29 +0000 |
---|---|---|
committer | Tim Bunce <TimBunce@ig.ac.uk> | 1998-03-04 16:31:29 +0000 |
commit | b760be090b8160caf516192fda912a7defe1247a (patch) | |
tree | 8dfc85c23ad380133abc88c870a92b5d1bdcbc63 /ext | |
parent | 2fa85d90326b35aa5fb3f25fd5ac5745e3ea3fec (diff) | |
download | perl-b760be090b8160caf516192fda912a7defe1247a.tar.gz |
Updated hints/bsdos.sh for BSD/OS 3.1
Fixed typo in pod/perlsyn.pod
Added workaround for old gmake in ext/SDBM_File/sdbm/Makefile.PL
Fixed typo in ext/GDBM_File/GDBM_File.pm
p4raw-id: //depot/maint-5.004/perl@753
Diffstat (limited to 'ext')
-rw-r--r-- | ext/GDBM_File/GDBM_File.pm | 2 | ||||
-rw-r--r-- | ext/SDBM_File/sdbm/Makefile.PL | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm index 9c7ae066b7..09df4373fb 100644 --- a/ext/GDBM_File/GDBM_File.pm +++ b/ext/GDBM_File/GDBM_File.pm @@ -7,7 +7,7 @@ GDBM_File - Perl5 access to the gdbm library. =head1 SYNOPSIS use GDBM_File ; - tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640); + tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640; # Use the %hash array. untie %hash ; diff --git a/ext/SDBM_File/sdbm/Makefile.PL b/ext/SDBM_File/sdbm/Makefile.PL index 50fd83eb25..7241b17082 100644 --- a/ext/SDBM_File/sdbm/Makefile.PL +++ b/ext/SDBM_File/sdbm/Makefile.PL @@ -29,5 +29,11 @@ config :: lint: lint -abchx $(LIBSRCS) + +# This is a workaround, the problem is that our old GNU make exports +# variables into the environment so $(MYEXTLIB) is set in here to this +# value which can not be built. +sdbm/libsdbm.a: + true '; } |