1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-25 04:04:18 -04:00

Merge pull request #34 from dgl/autogen-fix

Fix error to refer to elinks, as that is what it checks for
This commit is contained in:
Alexander Færøy 2014-06-15 21:58:32 +02:00
commit b8d748a248

View File

@ -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