aboutsummaryrefslogtreecommitdiffstats
path: root/docbook/Makefile
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-16 12:13:32 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-16 12:13:32 +0000
commit83ede7a4b471e8205ac42f188e267abab0bd8e14 (patch)
tree90d99b191328db20f3467afcdb2f5a73f176da5a /docbook/Makefile
parente58f53c9d2b3b224837f2af5b87f121c88d8da75 (diff)
can we agree on using lynx?
Cygwin situation: - lynx works - elinks is not available (at least on the standard repositories) - links and true doesn't produce any output git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19245 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'docbook/Makefile')
-rw-r--r--docbook/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/docbook/Makefile b/docbook/Makefile
index 882677e58e..1edaf79f74 100644
--- a/docbook/Makefile
+++ b/docbook/Makefile
@@ -34,10 +34,11 @@ HHC="/cygdrive/c/Program Files/HTML Help Workshop/hhc.exe"
# html to text converter for text version of release notes, e.g. elinks.
# This could also be "lynx", or "true" if neither elinks nor lynx is installed
-HTML2TXT=elinks -dump -dump-width 72
+# (cygwin: lynx works, elinks not available, links and true doesn't produce output)
+#HTML2TXT=elinks -dump -dump-width 72
#HTML2TXT=links -dump -width 72
-#HTML2TXT=lynx -dump -width=72 -nolist
-#HTML2TXT=true
+HTML2TXT=lynx -dump -width=72 -nolist -stdin
+#HTML2TXT="true"
############### YOU SHOULDN'T HAVE TO EDIT ANYTHING BELOW THIS LINE! ################