diff options
author | hubertf <hubertf> | 2000-09-17 21:55:09 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-09-17 21:55:09 +0000 |
commit | 3fd0103f6d8cbdb5c7750b83111dccf3b5f27d8d (patch) | |
tree | 067321e0def2a7957e207d3b41f6f4cee089831e | |
parent | 267637dd5f09ef420283973aa00429806dd22e07 (diff) | |
download | pkgsrc-3fd0103f6d8cbdb5c7750b83111dccf3b5f27d8d.tar.gz |
* Put architecture into summary mail
* Prefix every line of the build's output with the architecture, so it's
easy to see at a glance which architecture you have scrolling by in
front of you
-rw-r--r-- | mk/bulk/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bulk/build b/mk/bulk/build index 362961ce051..384f87ad54c 100644 --- a/mk/bulk/build +++ b/mk/bulk/build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: build,v 1.2 2000/09/15 22:25:57 hubertf Exp $ +# $NetBSD: build,v 1.3 2000/09/17 21:55:09 hubertf Exp $ # # Do builk build # @@ -49,12 +49,12 @@ fi nice -n 20 make \ SPECIFIC_PKGS=1 \ GROUP_SPECIFIC_PKGS="`tsort .l | tr '\012' ' '`" \ - bulk-package + bulk-package | sed 's/^/'`uname -p`'> /g' rm .l # Perl was wiped, reinstall it! ( cd lang/perl5-base ; make bulk-install ) -perl mk/bulk/post-build | mail -s "pkgsrc bulk build results" $ADMIN +perl mk/bulk/post-build | mail -s "pkgsrc/`uname -p` bulk build results" $ADMIN # Done! echo "" |