Date: Mon, 22 Oct 2012 09:07:43 +0000 (UTC) From: Ruslan Mahmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306261 - head/devel/papi Message-ID: <201210220907.q9M97hBw076087@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210220907.q9M97hBw076087>