summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDavid Leadbeater <dgl@dgl.cx>2014-06-15 21:00:34 +0100
committerDavid Leadbeater <dgl@dgl.cx>2014-06-15 21:00:34 +0100
commit831bd1d1e5874cf7c3e0b6a7dcdd6c5a818f684a (patch)
tree64ab7584bce3232ce2da94dfe52f0d92ee78eaf4 /autogen.sh
parent63011c2bf8f6d5c32a7793105db1702ee4c36e66 (diff)
downloadirssi-831bd1d1e5874cf7c3e0b6a7dcdd6c5a818f684a.zip
Fix error to refer to elinks, as that is what it checks for
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index b8d7c002..bdd16590 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -32,7 +32,7 @@ if type lynx >/dev/null 2>&1 ; then
elif type elinks >/dev/null 2>&1 ; then
elinks -dump docs/faq.html|perl -pe 's/^ *//; if ($_ eq "\n" && $state eq "Q") { $_ = ""; } elsif (/^([QA]):/) { $state = $1 } elsif ($_ ne "\n") { $_ = " $_"; };' > docs/faq.txt
else
- echo "**Error**: No lynx or links present"
+ echo "**Error**: No lynx or elinks present"
exit 1
fi