Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Jun 2014 21:14:08 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r357073 - head/net/py-qt4-network
Message-ID:  <201406082114.s58LE8c1043767@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Jun  8 21:14:08 2014
New Revision: 357073
URL: http://svnweb.freebsd.org/changeset/ports/357073
QAT: https://qat.redports.org/buildarchive/r357073/

Log:
  Enable debug symbols based on the right option.
  
  Fix a regression introduced in r311475, which checked for the value of the
  API option instead of WITH_DEBUG like the other py-qt4 ports. In practice,
  this meant py-qt4-network was built with debug and tracing symbols by
  default.
  
  MFH:		2014Q2

Modified:
  head/net/py-qt4-network/Makefile

Modified: head/net/py-qt4-network/Makefile
==============================================================================
--- head/net/py-qt4-network/Makefile	Sun Jun  8 20:49:10 2014	(r357072)
+++ head/net/py-qt4-network/Makefile	Sun Jun  8 21:14:08 2014	(r357073)
@@ -3,6 +3,7 @@
 
 PORTNAME=	network
 PORTVERSION=	${PYQT4_VERSION}
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	net devel python
 MASTER_SITES=	${MASTER_SITES_PYQT4}
@@ -50,7 +51,7 @@ ARGS+=		--qsci-api --qsci-api-destdir=${
 PLIST_SUB+=	API=""
 .endif
 
-.if ${PORT_OPTIONS:MAPI}
+.if defined(WITH_DEBUG)
 ARGS+=		--debug --trace
 .endif
 



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