summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-07-14 05:58:12 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-07-14 05:58:12 +0000
commita1431c4e37c9d08282aa1481a2b2394a9761fa7a (patch)
tree68f98015686627276ae36de9a221b9a5d0f4db29 /Tools
parentUpdate MASTER_SITES and DISTNAME to make this port work again. (diff)
Move message about skipping missing packages into the right else clause.
Notes
Notes: svn path=/head/; revision=20190
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/portbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild
index 80037a3df410..77f7b2085393 100755
--- a/Tools/portbuild/scripts/portbuild
+++ b/Tools/portbuild/scripts/portbuild
@@ -135,9 +135,9 @@ while [ $# -gt 0 ]; do
if [ ! -f ${chroot}/tmp/depends/$1 ]; then
echo "copying package $1 for ${pkgname}"
scp -p $master:${packages}/All/$1 ${chroot}/tmp/depends
- else
- echo "skipping package $1 for ${pkgname} since it is missing"
fi
+ else
+ echo "skipping package $1 for ${pkgname} since it is missing"
fi
shift
done