diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2008-05-05 15:50:11 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2008-05-05 15:50:11 +0000 |
commit | 9dcba17b9f30fe16f8196077f9cc985383f0f2dc (patch) | |
tree | 483a3a122b692c6cc8554f1a417770092b726791 /gnu | |
parent | f32e52bbc2947c223f3c422cc1e065ae5b4d7130 (diff) |
enforce make -j1 in SDBM_File, there is a nasty race that's hard to fix.
okay millert@
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/perl/ext/util/make_ext | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/ext/util/make_ext b/gnu/usr.bin/perl/ext/util/make_ext index 8bcd7d8ad2b..a19d0081b84 100644 --- a/gnu/usr.bin/perl/ext/util/make_ext +++ b/gnu/usr.bin/perl/ext/util/make_ext @@ -80,6 +80,10 @@ if test ! -d "ext/$pname"; then exit 0 # not an error ? fi +# XXX should find the race and fix it +case "$mname" in +SDBM_File) makeopts="$makeopts -j1";; +esac echo " Making $mname ($target)" |