Bug 177234 - [PATCH] databases/rrdtool: inverted logic
Summary: [PATCH] databases/rrdtool: inverted logic
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: Baptiste Daroussin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-22 15:40 UTC by William Grzybowski
Modified: 2013-03-22 20:30 UTC (History)
0 users

See Also:


Attachments
rrdtool.patch (411 bytes, patch)
2013-03-22 15:40 UTC, William Grzybowski
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description William Grzybowski 2013-03-22 15:40:01 UTC
	Inverted logic in last commit while converting to options ng

Fix: See attached patch
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-22 15:40:15 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sylvio

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Baptiste Daroussin freebsd_committer freebsd_triage 2013-03-22 20:25:04 UTC
Responsible Changed
From-To: sylvio->bapt

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-03-22 20:25:32 UTC
Author: bapt
Date: Fri Mar 22 20:25:24 2013
New Revision: 314963
URL: http://svnweb.freebsd.org/changeset/ports/314963

Log:
  Fix inverted logic in last commit while converting to options ng
  
  PR:		ports/177234
  Submitted by:	William Grzybowski <william88@gmail.com>

Modified:
  head/databases/rrdtool/Makefile

Modified: head/databases/rrdtool/Makefile
==============================================================================
--- head/databases/rrdtool/Makefile	Fri Mar 22 20:22:48 2013	(r314962)
+++ head/databases/rrdtool/Makefile	Fri Mar 22 20:25:24 2013	(r314963)
@@ -113,7 +113,7 @@ post-extract:
 		-e 's/^[[:space:]].*cd .* rrdtool.html index.html/	#/' \
 		${WRKSRC}/doc/Makefile.in
 .endif
-.if ${PORT_OPTIONS:MEXAMPLES}
+.if ! ${PORT_OPTIONS:MEXAMPLES}
 	${REINPLACE_CMD} -e '/^SUBDIRS = /s| examples | |' \
 		${WRKSRC}/Makefile.in
 .endif
_______________________________________________
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 4 Baptiste Daroussin freebsd_committer freebsd_triage 2013-03-22 20:26:00 UTC
State Changed
From-To: open->closed

Committed. Thanks, and sorry for the mess.