Skip site navigation (1)Skip section navigation (2)
Date:      Fri,  5 Apr 2013 23:26:04 -0700 (PDT)
From:      Jeremy Chadwick <jdc@koitsu.org>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/177662: ftp/wget -- OPTIONS_DEFAULT not used due to typo
Message-ID:  <20130406062604.F288073A31@icarus.home.lan>
Resent-Message-ID: <201304060630.r366U1S2016547@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         177662
>Category:       ports
>Synopsis:       ftp/wget -- OPTIONS_DEFAULT not used due to typo
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Apr 06 06:30:01 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Jeremy Chadwick
>Release:        FreeBSD 9.1-STABLE amd64
>Organization:
>Environment:
System: FreeBSD icarus.home.lan 9.1-STABLE FreeBSD 9.1-STABLE #0 r249160: Fri Apr 5 06:05:12 PDT 2013 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_9_amd64 amd64
>Description:
	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.
>How-To-Repeat:
	n/a
>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}/

Index: Makefile
===================================================================
--- Makefile	(revision 315738)
+++ Makefile	(working copy)
@@ -17,10 +17,10 @@ USE_PERL5_BUILD=yes
 GNU_CONFIGURE=	yes
 MAKE_JOBS_SAFE=	yes
 
-OPTIONS_RADIO=	SSL
+OPTIONS_RADIO=		SSL
 OPTIONS_RADIO_SSL=	GNUTLS OPENSSL
-OPTIONS_DEFINE=	IPV6 NLS IDN
-OPTIONs_DEFAULT=	OPENSSL IDN
+OPTIONS_DEFINE=		IPV6 NLS IDN
+OPTIONS_DEFAULT=	OPENSSL IDN
 
 .include <bsd.port.options.mk>
 
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20130406062604.F288073A31>