svn commit: r224560 - stable/8/sys/modules/dtrace/dtraceall
Artem Belevich
art at FreeBSD.org
Mon Aug 1 04:29:05 UTC 2011
Author: art
Date: Mon Aug 1 04:29:04 2011
New Revision: 224560
URL: http://svn.freebsd.org/changeset/base/224560
Log:
Create dummy opt_compat.h for i386 build to fix buildworld breakage
when MODULES_WITH_WORLD is set.
PR: 157529
Submitted by: Eugene Grosbein
Approved by: avg (mentor)
Modified:
stable/8/sys/modules/dtrace/dtraceall/Makefile
Modified: stable/8/sys/modules/dtrace/dtraceall/Makefile
==============================================================================
--- stable/8/sys/modules/dtrace/dtraceall/Makefile Mon Aug 1 02:57:46 2011 (r224559)
+++ stable/8/sys/modules/dtrace/dtraceall/Makefile Mon Aug 1 04:29:04 2011 (r224560)
@@ -9,6 +9,8 @@ CFLAGS+= -I${.CURDIR}/../../..
opt_compat.h:
.if ${MACHINE_ARCH} == "amd64"
echo "#define COMPAT_FREEBSD32 1" >> ${.TARGET}
+.else
+ echo -n >> ${.TARGET}
.endif
.endif
More information about the svn-src-stable-8
mailing list