From owner-svn-ports-head@freebsd.org Mon Dec 11 18:31:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9708E9A327; Mon, 11 Dec 2017 18:31:36 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96845728D0; Mon, 11 Dec 2017 18:31:36 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBBIVZcd087166; Mon, 11 Dec 2017 18:31:35 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBBIVZPb087165; Mon, 11 Dec 2017 18:31:35 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201712111831.vBBIVZPb087165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Mon, 11 Dec 2017 18:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456059 - head/sysutils/u-boot-master X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/sysutils/u-boot-master X-SVN-Commit-Revision: 456059 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2017 18:31:36 -0000 Author: manu (src committer) Date: Mon Dec 11 18:31:35 2017 New Revision: 456059 URL: https://svnweb.freebsd.org/changeset/ports/456059 Log: u-boot-master: Unbreak by testing that FAMILY is defined Reported by: dan (via freshport), portsnap builbox Approved by: imp (implicit) Modified: head/sysutils/u-boot-master/Makefile Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Mon Dec 11 18:26:13 2017 (r456058) +++ head/sysutils/u-boot-master/Makefile Mon Dec 11 18:31:35 2017 (r456059) @@ -99,7 +99,7 @@ UBOOT_MOVE=${UBOOT_MOVE_${FAMILY:tu}} .endif # Per family dependancies -.if ${FAMILY} == allwinner64 +.if defined(FAMILY) && ${FAMILY} == allwinner64 BUILD_DEPENDS+= ${LOCALBASE}/share/atf-allwinner/bl31.bin:sysutils/atf-allwinner MAKE_ENV+= BL31=${LOCALBASE}/share/atf-allwinner/bl31.bin .endif @@ -115,7 +115,7 @@ do-configure: # U-Boot for Allwinner 64bits SoCs is splited in two parts # Generate a single binary to ease deployement on sdcard -.if ${FAMILY} == allwinner64 +.if defined(FAMILY) && ${FAMILY} == allwinner64 post-build: ${CAT} ${WRKSRC}/spl/sunxi-spl.bin ${WRKSRC}/u-boot.itb > ${WRKSRC}/u-boot-sunxi-with-spl.bin .endif