svn commit: r306261 - head/devel/papi

Ruslan Mahmatkhanov rm at FreeBSD.org
Mon Oct 22 09:07:43 UTC 2012


Author: rm
Date: Mon Oct 22 09:07:43 2012
New Revision: 306261
URL: http://svn.freebsd.org/changeset/ports/306261

Log:
  - fix inverted logic of DEBUGINFO option
  
  Feature safe:	yes

Modified:
  head/devel/papi/Makefile

Modified: head/devel/papi/Makefile
==============================================================================
--- head/devel/papi/Makefile	Mon Oct 22 08:51:35 2012	(r306260)
+++ head/devel/papi/Makefile	Mon Oct 22 09:07:43 2012	(r306261)
@@ -41,9 +41,9 @@ CONFIGURE_ARGS+=	--with-components=coret
 .endif
 
 .if ${PORT_OPTIONS:MDEBUGINFO}
-CONFIGURE_ARGS+=	--without-debug
-.else
 CONFIGURE_ARGS+=	--with-debug
+.else
+CONFIGURE_ARGS+=	--without-debug
 .endif
 
 MAN1=	papi_avail.1 \


More information about the svn-ports-head mailing list