summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-11-23 19:31:46 +0000
committerjlam <jlam@pkgsrc.org>2004-11-23 19:31:46 +0000
commit19c97f1019b36ce5d49302790d802323a58d177c (patch)
tree087bc575fade55d221ae55bb9461808daf71d2d2 /mk
parent78b090b266a4a2f61cb459758745903fbcb1a569 (diff)
downloadpkgsrc-19c97f1019b36ce5d49302790d802323a58d177c.tar.gz
Fix the find command used to print out all of the .broken* files. It now
prints out both the .broken.html and .broken.work.html files instead of just the latter.
Diffstat (limited to 'mk')
-rw-r--r--mk/bulk/post-build4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/post-build b/mk/bulk/post-build
index 9098c965b38..ed3e88bb414 100644
--- a/mk/bulk/post-build
+++ b/mk/bulk/post-build
@@ -1,5 +1,5 @@
#!/usr/pkg/bin/perl
-# $NetBSD: post-build,v 1.47 2004/11/22 12:53:56 wiz Exp $
+# $NetBSD: post-build,v 1.48 2004/11/23 19:31:46 jlam Exp $
#
# Collect stuff after a pkg bulk build
#
@@ -93,7 +93,7 @@ system("mkdir -p ${FTP}");
# Copy over the output from the build process
chdir($USR_PKGSRC);
-system("find . -name $BROKENFILE -o -name $BROKENWRKLOG -print | $GTAR -T - -plcf - | (cd $FTP; $GTAR -plxf -)");
+system("find . -name $BROKENFILE -print -o -name $BROKENWRKLOG -print | $GTAR -T - -plcf - | (cd $FTP; $GTAR -plxf -)");
# Copy over the cache files used during the build
foreach my $f ($BULK_DBFILE, $DEPENDSTREEFILE, $DEPENDSFILE, $SUPPORTSFILE, $INDEXFILE, $ORDERFILE) {