www/wget/Makefile contains a typo in its OPTIONS_DEFAULT line (specifically OPTIONs_DEFAULT, note the lowercase 's'), which means the correct/proper defaults do not get set. And while I'm here, align indenting of OPTIONS_xxx lines' values so things are more legible. Fix: Patch below. Patch will also be available at the following URL once I get a GNATS PR number: http://jdc.koitsu.org/freebsd/{prnum}/ How-To-Repeat: n/a
Responsible Changed From-To: freebsd-ports-bugs->vd Over to maintainer (via the GNATS Auto Assign Tool)
Author: vd Date: Thu Apr 11 10:03:50 2013 New Revision: 315782 URL: http://svnweb.freebsd.org/changeset/ports/315782 Log: ftp/wget: * Fix a typo in options variable (introduced in r315271) * Whitespace change to align the values PR: ports/177662 Submitted by: Jeremy Chadwick <jdc@koitsu.org> Approved by: portmgr Modified: head/ftp/wget/Makefile Modified: head/ftp/wget/Makefile ============================================================================== --- head/ftp/wget/Makefile Wed Apr 10 23:55:57 2013 (r315781) +++ head/ftp/wget/Makefile Thu Apr 11 10:03:50 2013 (r315782) @@ -18,9 +18,9 @@ GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes OPTIONS_RADIO= SSL -OPTIONS_RADIO_SSL= GNUTLS OPENSSL +OPTIONS_RADIO_SSL=GNUTLS OPENSSL OPTIONS_DEFINE= IPV6 NLS IDN -OPTIONs_DEFAULT= OPENSSL IDN +OPTIONS_DEFAULT=OPENSSL IDN .include <bsd.port.options.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks!