svn commit: r287257 - head/sys/boot/libstand32

Warner Losh imp at FreeBSD.org
Fri Aug 28 14:50:37 UTC 2015


Author: imp
Date: Fri Aug 28 14:50:36 2015
New Revision: 287257
URL: https://svnweb.freebsd.org/changeset/base/287257

Log:
  Add back missing -m32 for amd64 and powerpc64 that was lost
  in the move to bsd.stand.mk.

Modified:
  head/sys/boot/libstand32/Makefile

Modified: head/sys/boot/libstand32/Makefile
==============================================================================
--- head/sys/boot/libstand32/Makefile	Fri Aug 28 14:26:11 2015	(r287256)
+++ head/sys/boot/libstand32/Makefile	Fri Aug 28 14:50:36 2015	(r287257)
@@ -19,6 +19,9 @@ LIB=		stand
 INTERNALLIB=
 MK_PROFILE=	no
 NO_PIC=
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
+CFLAGS+=	-m32 -I.
+.endif
 
 WARNS?=		0
 


More information about the svn-src-head mailing list