Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2016 08:16:45 +0000 (UTC)
From:      Stanislav Galabov <sgalabov@FreeBSD.org>
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
Message-ID:  <201602260816.u1Q8Gjn8082541@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.stand.mk>
 .include <bsd.lib.mk>

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 <bsd.stand.mk>
 .include <bsd.lib.mk>
 
 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 <bsd.stand.mk>
 .include <bsd.lib.mk>
 
 beforedepend ${OBJS}: machine



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602260816.u1Q8Gjn8082541>