summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-07-27 05:19:10 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-07-27 05:19:10 +0000
commitb080b90479069c376bf68c3af81670533f5f2c61 (patch)
tree17ce82ae0605d77d0d22f7cb3960ec173d9dd7ea /autogen.sh
parent1708722fc214bb474c9fd9530c14ac6ded2f4b41 (diff)
downloadwireshark-b080b90479069c376bf68c3af81670533f5f2c61.tar.gz
Fixed some improper word choices in the echoed error messages.
svn path=/trunk/; revision=389
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 1e25a1e23d..51a6a5f6e2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,7 +2,7 @@
#
# Run this to generate all the initial makefiles.
#
-# $Id: autogen.sh,v 1.1 1999/07/27 04:43:01 gram Exp $
+# $Id: autogen.sh,v 1.2 1999/07/27 05:19:10 gram Exp $
DIE=0
PROJECT="Ethereal"
@@ -10,15 +10,15 @@ PROJECT="Ethereal"
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $PROJECT."
- echo "Download the appropriate package for your distribution,"
+ echo "Download the appropriate package for your distribution/OS,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
- echo "You must have autoconf installed to compile $PROJECT."
- echo "Download the appropriate package for your distribution,"
+ echo "You must have automake installed to compile $PROJECT."
+ echo "Download the appropriate package for your distribution/OS,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}