From 60ebd140b28c891012483852b112ceaae3bf6f67 Mon Sep 17 00:00:00 2001 From: rakuco Date: Sun, 8 Jun 2014 21:14:08 +0000 Subject: 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 --- net/py-qt4-network/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/py-qt4-network/Makefile b/net/py-qt4-network/Makefile index bdea37fa766c..38214302f66e 100644 --- a/net/py-qt4-network/Makefile +++ b/net/py-qt4-network/Makefile @@ -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=${QSCIDIR} PLIST_SUB+= API="" .endif -.if ${PORT_OPTIONS:MAPI} +.if defined(WITH_DEBUG) ARGS+= --debug --trace .endif -- cgit