aboutsummaryrefslogtreecommitdiff
path: root/textproc/ispell
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2001-01-14 23:51:29 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2001-01-14 23:51:29 +0000
commit8a0a9136bf29cc0941a3e486847a770caf18ee1c (patch)
treeafe6eb69eb5d9b0c16f2ed75673ae8ed37eb5fde /textproc/ispell
parentfd20f6b67839999d752bc5fa03ef652fea214111 (diff)
downloadports-8a0a9136bf29cc0941a3e486847a770caf18ee1c.tar.gz
ports-8a0a9136bf29cc0941a3e486847a770caf18ee1c.zip
Print a more informative error message when /usr/share/dict/words is not found.
Submitted by: Matthew Emmerton <matt@gsicomp.on.ca>
Notes
Notes: svn path=/head/; revision=37207
Diffstat (limited to 'textproc/ispell')
-rw-r--r--textproc/ispell/scripts/configure2
1 files changed, 2 insertions, 0 deletions
diff --git a/textproc/ispell/scripts/configure b/textproc/ispell/scripts/configure
index ad00cb61f210..621c1b854410 100644
--- a/textproc/ispell/scripts/configure
+++ b/textproc/ispell/scripts/configure
@@ -6,6 +6,8 @@ if [ "`echo a|sed -e P`" = "aa" ]; then
fi
if [ ! -f /usr/share/dict/words ]; then
echo "you need to install /usr/share/dict/words from the 'dict' distribution first"
+ echo "(This is done using /stand/sysinstall. The 'textproc/dict' port in the ports"
+ echo " tree is NOT what you need.)"
exit 1
fi
cd $WRKSRC || exit 1;