after the build, pull in 'lang/perl5' instead of 'lang/perl5-base' as the

latter no longer exists.

Also, use '&&' to separate commands where you don't want the second to
execute if the first fails!
This commit is contained in:
dmcmahill 2001-10-13 14:32:01 +00:00
parent ff2deda9c5
commit 8b1f1d76a0

View file

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: build,v 1.11 2001/10/12 19:28:02 hubertf Exp $
# $NetBSD: build,v 1.12 2001/10/13 14:32:01 dmcmahill Exp $
#
# Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@netbsd.org>
@ -146,7 +146,7 @@ echo "Post processing bulk build results..."
#rm $DEPENDSTREEFILE $DEPENDSFILE $SUPPORTSFILE $INDEXFILE $ORDERFILE
# Perl was wiped, reinstall it!
( cd lang/perl5-base ; make bulk-install )
( cd lang/perl5 && make bulk-install )
perl mk/bulk/post-build | mail -s "pkgsrc/`uname -p` bulk build results `date +%F`" $ADMIN
# Done!