diff options
author | mi <mi@FreeBSD.org> | 2002-01-28 20:19:18 +0000 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2002-01-28 20:19:18 +0000 |
commit | a57399f42366330281ced416984a21693c53c002 (patch) | |
tree | 604e2ce28469b0849569181e8668b837d01745dd | |
parent | 2f4079ce9e577549227a70e1aa95473e57451dfc (diff) | |
download | FreeBSD-ports-a57399f42366330281ced416984a21693c53c002.zip FreeBSD-ports-a57399f42366330281ced416984a21693c53c002.tar.gz |
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.
-rw-r--r-- | devel/tcllib/files/patch-wget | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/tcllib/files/patch-wget b/devel/tcllib/files/patch-wget new file mode 100644 index 0000000..1d4c1e7 --- /dev/null +++ b/devel/tcllib/files/patch-wget @@ -0,0 +1,5 @@ +--- 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} |