Date: Sat, 12 Apr 2014 22:19:04 +0000 (UTC) From: Diane Bruce <db@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351152 - head/comms/fllog Message-ID: <201404122219.s3CMJ4Ba073472@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: db Date: Sat Apr 12 22:19:04 2014 New Revision: 351152 URL: http://svnweb.freebsd.org/changeset/ports/351152 QAT: https://qat.redports.org/buildarchive/r351152/ Log: - Change from old style .if/CONFUGRE_ARGS+=/.else to new style *_CONFIGURE_* for the knob. PR: ports/188536 Submitted by: Maintainer Modified: head/comms/fllog/Makefile Modified: head/comms/fllog/Makefile ============================================================================== --- head/comms/fllog/Makefile Sat Apr 12 22:18:27 2014 (r351151) +++ head/comms/fllog/Makefile Sat Apr 12 22:19:04 2014 (r351152) @@ -23,16 +23,11 @@ OPTIONS_DEFINE= NATIVE_OPT NATIVE_OPT_DESC= Enable Native Optimizations -.include <bsd.port.pre.mk> - PLIST_FILES= bin/fllog \ share/applications/fllog.desktop \ share/pixmaps/fllog.xpm -.if ${PORT_OPTIONS:MNATIVE_OPT} -CONFIGURE_ARGS+=--enable-optimizations=native -.else -CONFIGURE_ARGS+=--enable-optimizations=none -.endif +NATIVE_OPT_CONFIGURE_ON= --enable-optimizations=native +NATIVE_OPT_CONFIGURE_OFF= --enable-optimizations=none .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404122219.s3CMJ4Ba073472>