svn commit: r324850 - head/sys/boot

Warner Losh imp at FreeBSD.org
Sun Oct 22 07:25:30 UTC 2017


Author: imp
Date: Sun Oct 22 07:25:28 2017
New Revision: 324850
URL: https://svnweb.freebsd.org/changeset/base/324850

Log:
  Define LIBSA32 to LIBSA on i386 to fix build.
  
  Sponsored by: Netflix

Modified:
  head/sys/boot/defs.mk

Modified: head/sys/boot/defs.mk
==============================================================================
--- head/sys/boot/defs.mk	Sun Oct 22 07:20:11 2017	(r324849)
+++ head/sys/boot/defs.mk	Sun Oct 22 07:25:28 2017	(r324850)
@@ -19,7 +19,11 @@ LIBFICL=	${BOOTOBJ}/ficl/libficl.a
 LIBFICL32=	${BOOTOBJ}/ficl32/libficl.a
 .endif
 LIBSA=		${BOOTOBJ}/libsa/libsa.a
+.if ${MACHINE} == "i386"
+LIBSA32=	${LIBSA}
+.else
 LIBSA32=	${BOOTOBJ}/libsa32/libsa32.a
+.endif
 
 # Standard options:
 


More information about the svn-src-all mailing list