diff options
author | David Leadbeater <dgl@dgl.cx> | 2014-06-15 21:00:34 +0100 |
---|---|---|
committer | David Leadbeater <dgl@dgl.cx> | 2014-06-15 21:00:34 +0100 |
commit | 831bd1d1e5874cf7c3e0b6a7dcdd6c5a818f684a (patch) | |
tree | 64ab7584bce3232ce2da94dfe52f0d92ee78eaf4 /autogen.sh | |
parent | 63011c2bf8f6d5c32a7793105db1702ee4c36e66 (diff) | |
download | irssi-831bd1d1e5874cf7c3e0b6a7dcdd6c5a818f684a.zip |
Fix error to refer to elinks, as that is what it checks for
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |