Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Jul 2014 22:47:52 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r360109 - head/devel/p5-ReadLine-Gnu
Message-ID:  <201407012247.s61MlqpJ049552@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Tue Jul  1 22:47:52 2014
New Revision: 360109
URL: http://svnweb.freebsd.org/changeset/ports/360109
QAT: https://qat.redports.org/buildarchive/r360109/

Log:
  Do not hardcode make and pass CPPFLAGS to CFLAGS to fix build with no readline in base

Modified:
  head/devel/p5-ReadLine-Gnu/Makefile

Modified: head/devel/p5-ReadLine-Gnu/Makefile
==============================================================================
--- head/devel/p5-ReadLine-Gnu/Makefile	Tue Jul  1 22:45:48 2014	(r360108)
+++ head/devel/p5-ReadLine-Gnu/Makefile	Tue Jul  1 22:47:52 2014	(r360109)
@@ -16,10 +16,11 @@ LICENSE=	ART10 GPLv1
 LICENSE_COMB=	dual
 
 USES=		perl5 readline
+CFLAGS+=	${CPPFLAGS}
 USE_PERL5=	configure
 WRKSRC=		${WRKDIR}/${DISTNAME:C/a$//}
 
 test:	build
-	@(cd ${WRKSRC}; make test)
+	@(cd ${WRKSRC}; ${MAKE_CMD} test)
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407012247.s61MlqpJ049552>