diff options
author | jlam <jlam> | 2004-11-23 19:31:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-11-23 19:31:46 +0000 |
commit | 092a130bf4c87605b290a229b7955b5838776aaf (patch) | |
tree | 087bc575fade55d221ae55bb9461808daf71d2d2 /mk | |
parent | 4687b71b88ce9037c6dc67810986a0ef29c4ab02 (diff) | |
download | pkgsrc-092a130bf4c87605b290a229b7955b5838776aaf.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-build | 4 |
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) { |