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 _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"