freebsd-ports/devel/tcllib/files/patch-wget
Mikhail Teterin de8bfc205a Hardcode `/usr/bin/fetch -q -o -'' instead of the bogus `/usr/bin/wget
-q -O -''. The  major bogosity is in the fact, that  TCL and tcllib have
pretty functional http and ftp fetchers already.
2002-01-28 20:19:18 +00:00

5 lines
279 B
Text

--- modules/doctools/mpformats/_html.tcl Mon Jan 21 12:55:23 2002
+++ modules/doctools/mpformats/_html.tcl Mon Jan 28 15:15:02 2002
@@ -29 +29 @@
-proc wget {url} {exec /usr/bin/wget -q -O - $url 2>/dev/null}
+proc wget {url} {exec /usr/bin/fetch -q -o - $url 2>/dev/null}