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:
 
_______________________________________________
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"

Reply via email to