svn commit: r492253 - in head/sysutils: . atf-master

Emmanuel Vadot manu at FreeBSD.org
Tue Feb 5 15:47:29 UTC 2019


Author: manu
Date: Tue Feb  5 15:47:28 2019
New Revision: 492253
URL: https://svnweb.freebsd.org/changeset/ports/492253

Log:
  atf-master: Hook to the build and add IGNORE when no platform is specified
  
  Reported by:	antoine

Modified:
  head/sysutils/Makefile
  head/sysutils/atf-master/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue Feb  5 15:45:52 2019	(r492252)
+++ head/sysutils/Makefile	Tue Feb  5 15:47:28 2019	(r492253)
@@ -56,6 +56,7 @@
     SUBDIR += asmem
     SUBDIR += asmon
     SUBDIR += asusoled
+    SUBDIR += atf-master
     SUBDIR += atf-sun50i_a64
     SUBDIR += atf-rk3399
     SUBDIR += atitvout

Modified: head/sysutils/atf-master/Makefile
==============================================================================
--- head/sysutils/atf-master/Makefile	Tue Feb  5 15:45:52 2019	(r492252)
+++ head/sysutils/atf-master/Makefile	Tue Feb  5 15:47:28 2019	(r492253)
@@ -32,6 +32,11 @@ DESCR?=		${.CURDIR}/pkg-descr
 
 NO_ARCH=	yes
 
+.if !defined(PLAT)
+PLAT=		NONE
+IGNORE=		is a metaport; there is nothing to build
+.endif
+
 do-install:
 	${MKDIR} ${STAGEDIR}/${PREFIX}/share/${PORTNAME}-${PLAT}/
 	${INSTALL_DATA} ${WRKSRC}/build/${PLAT}/release/${BL31} ${STAGEDIR}/${PREFIX}/share/${PORTNAME}-${PLAT}/


More information about the svn-ports-all mailing list