svn commit: r429378 - in head/sysutils: u-boot-rpi u-boot-rpi2

Antoine Brodin antoine at FreeBSD.org
Sat Dec 24 18:58:32 UTC 2016


Author: antoine
Date: Sat Dec 24 18:58:31 2016
New Revision: 429378
URL: https://svnweb.freebsd.org/changeset/ports/429378

Log:
  Fix build after arm-none-eabi-gcc was updated to 6.2.0

Modified:
  head/sysutils/u-boot-rpi/Makefile
  head/sysutils/u-boot-rpi2/Makefile

Modified: head/sysutils/u-boot-rpi/Makefile
==============================================================================
--- head/sysutils/u-boot-rpi/Makefile	Sat Dec 24 17:33:39 2016	(r429377)
+++ head/sysutils/u-boot-rpi/Makefile	Sat Dec 24 18:58:31 2016	(r429378)
@@ -40,6 +40,9 @@ PLIST_FILES=	${U_BOOT_DIR}/u-boot.img \
 MAKE_ARGS+=	ARCH=arm \
 		CROSS_COMPILE=arm-none-eabi-
 
+post-patch:
+	@${LN} -sf compiler-gcc5.h ${WRKSRC}/include/linux/compiler-gcc6.h
+
 do-configure:
 	(cd ${WRKSRC}; ${MAKE_CMD} rpi_defconfig)
 

Modified: head/sysutils/u-boot-rpi2/Makefile
==============================================================================
--- head/sysutils/u-boot-rpi2/Makefile	Sat Dec 24 17:33:39 2016	(r429377)
+++ head/sysutils/u-boot-rpi2/Makefile	Sat Dec 24 18:58:31 2016	(r429378)
@@ -40,6 +40,9 @@ PLIST_FILES=	${U_BOOT_DIR}/u-boot.bin \
 MAKE_ARGS+=	ARCH=arm \
 		CROSS_COMPILE=arm-none-eabi-
 
+post-patch:
+	@${LN} -sf compiler-gcc5.h ${WRKSRC}/include/linux/compiler-gcc6.h
+
 do-configure:
 	(cd ${WRKSRC}; ${MAKE_CMD} rpi_2_defconfig)
 


More information about the svn-ports-head mailing list