diff options
author | Tony Cook <tony@openbsd32.tony.develop-help.com> | 2010-07-22 09:48:18 +1000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-08-13 15:11:44 +0200 |
commit | d11a62fe01f2ecb229aeda82048ad1a4c32cfde2 (patch) | |
tree | 10883f89d6c16ce3bf3fb48070d9cebd0b5fe4cf /Makefile.SH | |
parent | 03f9528566237f9170dc0467302f5fa817ca7c9f (diff) | |
download | perl-d11a62fe01f2ecb229aeda82048ad1a4c32cfde2.tar.gz |
Cwd.pm needs to be installed in lib before SDBM_File recurses. Mark the dependency
make_ext.pl fills PERL5LIB with relative directories to the modules
needed, but this fails for SDBM_File when it recurses into
ext/SDBM_File/sdbm directory. Revealed in parallel builds on OpenBSD.
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.SH b/Makefile.SH index c3f7edfec8..477ca255db 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -198,6 +198,8 @@ $this_target: lib/auto/List/Util/Util.$dlext" ;; $this_target: uni.data" ;; Text/ParseWords) extra_dep="$extra_dep $this_target: lib/auto/Scalar/Util.$dlext" ;; + SDBM_File) extra_dep="$extra_dep +$this_target: lib/auto/Cwd/Cwd.$dlext" ;; esac done |