From owner-svn-src-head@freebsd.org Fri Feb 26 08:16:46 2016 Return-Path: Delivered-To: svn-src-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 7FEB5AB5A89; Fri, 26 Feb 2016 08:16:46 +0000 (UTC) (envelope-from sgalabov@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 4B992132A; Fri, 26 Feb 2016 08:16:46 +0000 (UTC) (envelope-from sgalabov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1Q8GjOM082545; Fri, 26 Feb 2016 08:16:45 GMT (envelope-from sgalabov@FreeBSD.org) Received: (from sgalabov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1Q8Gjn8082541; Fri, 26 Feb 2016 08:16:45 GMT (envelope-from sgalabov@FreeBSD.org) Message-Id: <201602260816.u1Q8Gjn8082541@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sgalabov set sender to sgalabov@FreeBSD.org using -f From: Stanislav Galabov Date: Fri, 26 Feb 2016 08:16:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r296080 - in head/sys/boot: fdt uboot/fdt uboot/lib X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2016 08:16:46 -0000 Author: sgalabov Date: Fri Feb 26 08:16:44 2016 New Revision: 296080 URL: https://svnweb.freebsd.org/changeset/base/296080 Log: So far bsd.stand.mk wasn't included in the following files: sys/boot/fdt/Makefile sys/boot/uboot/fdt/Makefile sys/boot/uboot/lib/Makefile This causes compilation issues on MIPS due to trying to link PIC with non-PIC code. This revision includes bsd.stand.mk in the above files. Reviewed by: imp Approved by: adrian (mentor) Sponsored by: Smartcom - Bulgaria AD Differential Revision: https://reviews.freebsd.org/D5311 Modified: head/sys/boot/fdt/Makefile head/sys/boot/uboot/fdt/Makefile head/sys/boot/uboot/lib/Makefile Modified: head/sys/boot/fdt/Makefile ============================================================================== --- head/sys/boot/fdt/Makefile Fri Feb 26 08:06:25 2016 (r296079) +++ head/sys/boot/fdt/Makefile Fri Feb 26 08:16:44 2016 (r296080) @@ -26,4 +26,5 @@ CFLAGS+= -m32 CFLAGS+= -Wformat -Wall +.include .include Modified: head/sys/boot/uboot/fdt/Makefile ============================================================================== --- head/sys/boot/uboot/fdt/Makefile Fri Feb 26 08:06:25 2016 (r296079) +++ head/sys/boot/uboot/fdt/Makefile Fri Feb 26 08:16:44 2016 (r296080) @@ -28,6 +28,7 @@ machine: CLEANFILES+= machine +.include .include beforedepend ${OBJS}: machine Modified: head/sys/boot/uboot/lib/Makefile ============================================================================== --- head/sys/boot/uboot/lib/Makefile Fri Feb 26 08:06:25 2016 (r296079) +++ head/sys/boot/uboot/lib/Makefile Fri Feb 26 08:16:44 2016 (r296080) @@ -46,6 +46,7 @@ machine: CLEANFILES+= machine +.include .include beforedepend ${OBJS}: machine