summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam>2004-11-23 19:31:46 +0000
committerjlam <jlam>2004-11-23 19:31:46 +0000
commitf9f0eb56640205513f04aef5d446065182242e7e (patch)
tree087bc575fade55d221ae55bb9461808daf71d2d2
parent7961b884b1998ad36d7432fa7b71032f0c19fcce (diff)
downloadpkgsrc-f9f0eb56640205513f04aef5d446065182242e7e.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.
-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) {