svn commit: r363528 - head/misc/clpbar
Adam Weinberger
adamw at FreeBSD.org
Thu Jul 31 00:12:48 UTC 2014
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>
More information about the svn-ports-all
mailing list