summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2007-01-26 10:19:23 +0000
committerVasil Dimov <vd@FreeBSD.org>2007-01-26 10:19:23 +0000
commita62c886fca15a47d021b7c84919be2ea53170452 (patch)
tree5f0c98cf023b5303d9842b93df17d7700bd590b6 /Tools
parent- Swap master sites, make checksum chokes on parallelrealities.co.uk returnin... (diff)
Make output messages more useful
Notes
Notes: svn path=/head/; revision=183321
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/rmport6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport
index 5922daaef982..6156179b8de2 100755
--- a/Tools/scripts/rmport
+++ b/Tools/scripts/rmport
@@ -205,6 +205,8 @@ check_dep()
echo 'if this is the case, then either:' >&2
echo ' * these are false positives' >&2
echo ' * you want to break something' >&2
+ echo " * your ${PORTSDIR} is out of date, consider setting PORTSDIR in environment" >&2
+ echo ' point to a newer instance of the ports tree' >&2
echo "or you can hit \`n' to repeat the check" >&2
answer=`ask "ignore the above issues"`
if [ "${answer}" = "y" ] ; then
@@ -302,7 +304,9 @@ check_LEGAL()
msg="${catport}: checking if ${checkstr} is in ports/LEGAL"
log "${msg}"
while grep -i ${checkstr} ports/LEGAL ; do
- echo "${checkstr} is in ports/LEGAL, remove it and hit <enter> when ready" >&2
+ echo "" >&2
+ echo "${checkstr} is in ${PWD}/ports/LEGAL" >&2
+ echo "remove it and hit <enter> when ready" >&2
echo "or hit \`s' to skip this issue and continue anyway" >&2
read answer
if [ "${answer}" = "s" ] ; then