Bug 177662 - ftp/wget -- OPTIONS_DEFAULT not used due to typo
Summary: ftp/wget -- OPTIONS_DEFAULT not used due to typo
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Vasil Dimov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-06 07:30 UTC by Jeremy Chadwick
Modified: 2013-04-11 11:10 UTC (History)
0 users

See Also:


Attachments
file.diff (456 bytes, patch)
2013-04-06 07:30 UTC, Jeremy Chadwick
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy Chadwick 2013-04-06 07:30:01 UTC
	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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-06 07:30:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->vd

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-04-11 11:04:03 UTC
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"
Comment 3 Vasil Dimov freebsd_committer freebsd_triage 2013-04-11 11:04:17 UTC
State Changed
From-To: open->closed

Committed, thanks!