diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2011-01-24 01:58:21 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2011-01-24 01:58:21 +0000 |
commit | 4ddc8569cbed85677fa3f914a0f9a372abe32df7 (patch) | |
tree | 574ec5e279e22437b25d6dc46b9970fd7f2b7b16 /Tools/portbuild | |
parent | Add an entry for the 'dirent' error. (diff) |
Fix typo in fixed-up tar command to suppress a whoooole lot of junk
output on package builds.
Pointy hat: self
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=268151
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/pdispatch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/pdispatch b/Tools/portbuild/scripts/pdispatch index 61399b66c86f..c3076ee26a2d 100755 --- a/Tools/portbuild/scripts/pdispatch +++ b/Tools/portbuild/scripts/pdispatch @@ -145,7 +145,7 @@ ${scp_cmd} ${client_user}@${host}:${chroot}/tmp/${pkgname}.log ${builddir}/logs/ # XXX Set dirty flag if any of the scp's fail mkdir -p ${builddir}/distfiles/.pbtmp/${pkgname} -${ssh_cmd} -a -n ${client_user}@${host} tar -C ${chroot}/tmp/distfiles -exclude ${chroot}/tmp/distfiles/RESTRICTED -cf - . | \ +${ssh_cmd} -a -n ${client_user}@${host} tar -C ${chroot}/tmp/distfiles --exclude ${chroot}/tmp/distfiles/RESTRICTED -cf - . | \ tar --unlink -C ${builddir}/distfiles/.pbtmp/${pkgname} -xvf - && \ touch ${builddir}/distfiles/.pbtmp/${pkgname}/.done |