Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Oct 2017 07:25:28 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r324850 - head/sys/boot
Message-ID:  <201710220725.v9M7PS5w014719@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:
 



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