Date: Fri, 22 Dec 2017 02:11:44 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456951 - head/sysutils/u-boot-master Message-ID: <201712220211.vBM2BiEu068113@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Fri Dec 22 02:11:44 2017 New Revision: 456951 URL: https://svnweb.freebsd.org/changeset/ports/456951 Log: Make the IGNORE message and the COMMENT message more meaningful for the masterport. Modified: head/sysutils/u-boot-master/Makefile Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Fri Dec 22 01:30:26 2017 (r456950) +++ head/sysutils/u-boot-master/Makefile Fri Dec 22 02:11:44 2017 (r456951) @@ -11,7 +11,7 @@ CATEGORIES= sysutils PKGNAMESUFFIX?= -${MODEL} MAINTAINER= imp@FreeBSD.org -COMMENT= Cross-build das u-boot for ${MODEL} +COMMENT= Cross-build das u-boot for model ${MODEL} LICENSE= GPLv2 @@ -38,6 +38,10 @@ MAKE_ARGS+= V=1 CROSS_COMPILE=${CROSS_COMPILE} DTC=${L NO_ARCH= yes # Sanity checks +.if !defined(MODEL) && !defined(BOARD_CONFIG) && !defined(FAMILY) +MODEL= NONE +IGNORE= is a metaport; there is nothing to build +.else .if !defined(MODEL) IGNORE+= MODEL is not defined .endif @@ -46,6 +50,7 @@ IGNORE+= BOARD_CONFIG is not defined .endif .if !defined(FAMILY) IGNORE+= FAMILY is not defined +.endif .endif # Overrides for OMAP family
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712220211.vBM2BiEu068113>