Date: Thu, 31 Jul 2014 00:12:48 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363528 - head/misc/clpbar Message-ID: <201407310012.s6V0Cm6e028059@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Thu Jul 31 00:12:48 2014 New Revision: 363528 URL: http://svnweb.freebsd.org/changeset/ports/363528 QAT: https://qat.redports.org/buildarchive/r363528/ Log: Actually, this is only necessary on 32-bit systems. This is probably also not the most graceful way to accomplish this. Modified: head/misc/clpbar/Makefile Modified: head/misc/clpbar/Makefile ============================================================================== --- head/misc/clpbar/Makefile Thu Jul 31 00:03:17 2014 (r363527) +++ head/misc/clpbar/Makefile Thu Jul 31 00:12:48 2014 (r363528) @@ -13,9 +13,14 @@ COMMENT= Command Line Progress Bar WRKSRC= ${WRKDIR}/bar-${PORTVERSION} GNU_CONFIGURE= yes MAKE_ARGS+= CFLAGS+="${CFLAGS}" -CONFIGURE_ARGS= --disable-use-m64 PLIST_FILES= bin/bar \ man/man1/bar.1.gz -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if empty(ARCH:M*64) +CONFIGURE_ARGS= --disable-use-m64 +.endif + +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407310012.s6V0Cm6e028059>