svn commit: r360109 - head/devel/p5-ReadLine-Gnu

Baptiste Daroussin bapt at FreeBSD.org
Tue Jul 1 22:47:53 UTC 2014


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>


More information about the svn-ports-head mailing list