From 4858b738d590ad094d105d1339e0847184e4fca4 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Fri, 6 Mar 2015 20:00:38 +0000 Subject: [PATCH] ftp/wget: Fix upstream bug #44403: wget --quiet isn't quiet anymore http://savannah.gnu.org/bugs/index.php?44403 --- ftp/wget/Makefile | 1 + ftp/wget/files/patch-src__main.c | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 ftp/wget/files/patch-src__main.c diff --git a/ftp/wget/Makefile b/ftp/wget/Makefile index 6ed9b8096ca4..b9f7ae4a4e20 100644 --- a/ftp/wget/Makefile +++ b/ftp/wget/Makefile @@ -3,6 +3,7 @@ PORTNAME= wget DISTVERSION= 1.16.2 +PORTREVISION= 1 CATEGORIES= ftp www ipv6 MASTER_SITES= GNU diff --git a/ftp/wget/files/patch-src__main.c b/ftp/wget/files/patch-src__main.c new file mode 100644 index 000000000000..b2ba45411b09 --- /dev/null +++ b/ftp/wget/files/patch-src__main.c @@ -0,0 +1,12 @@ +--- src/main.c.orig 2015-02-10 23:31:49.000000000 +0200 ++++ src/main.c 2015-03-06 21:55:03.975252490 +0200 +@@ -1272,6 +1272,9 @@ + if (opt.verbose == -1) + opt.verbose = !opt.quiet; + ++ if (opt.quiet && opt.show_progress == -1) ++ opt.show_progress = false; ++ + /* Sanity checks. */ + if (opt.verbose && opt.quiet) + {