summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2009-10-06 00:48:13 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2009-10-06 00:48:13 +0000
commite49ea39cc3cf4dd40a41e799bf1146e48955d7a5 (patch)
treef323172bf7320c4695cc08c902e266e066faf09c /Tools
parent- Updated to 2.5.10 (diff)
- Fixed "permission denied" error
- Prevented full ports tree build when operating with ~/.cvsrc PR: ports/139121
Notes
Notes: svn path=/head/; revision=242501
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/rmport4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport
index f8d4b15e8827..7e6c5ef7a99b 100755
--- a/Tools/scripts/rmport
+++ b/Tools/scripts/rmport
@@ -400,7 +400,7 @@ diff()
commit()
{
log "running cvs update"
- ${PCVS} up ports 2>&1 |${PAGER:-less}
+ ${PCVS} -fnq up ports 2>&1 |${PAGER:-less}
answer=`ask "do you want to commit?"`
@@ -528,7 +528,7 @@ done
# the diff afterwards
answer=y
while [ "${answer}" = "y" ] ; do
- diffout=`diff`
+ diffout=diff
# EDITOR instead of PAGER because vim has nice syntax highlighting ;-)
${EDITOR} ${diffout}