summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2001-10-13 14:32:01 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2001-10-13 14:32:01 +0000
commit8b1f1d76a059628acb40dc6c0e67cc28fb40d2bb (patch)
treeb5397c164867fdf0005a827a826490248c562fdf /mk
parentff2deda9c53b7afd3394aeb2c06d0309637bad0d (diff)
downloadpkgsrc-8b1f1d76a059628acb40dc6c0e67cc28fb40d2bb.tar.gz
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!
Diffstat (limited to 'mk')
-rw-r--r--mk/bulk/build4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/build b/mk/bulk/build
index e4930ae7134..28f69727c0b 100644
--- a/mk/bulk/build
+++ b/mk/bulk/build
@@ -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!