svn commit: r234060 - head/usr.bin/truss

Dimitry Andric dim at FreeBSD.org
Mon Apr 9 15:34:22 UTC 2012


Author: dim
Date: Mon Apr  9 15:34:22 2012
New Revision: 234060
URL: http://svn.freebsd.org/changeset/base/234060

Log:
  Since truss also uses kdump's mkioctls script, pass the value of ${CPP}
  there too, similar to r234058.
  
  MFC after:	1 week

Modified:
  head/usr.bin/truss/Makefile

Modified: head/usr.bin/truss/Makefile
==============================================================================
--- head/usr.bin/truss/Makefile	Mon Apr  9 15:20:16 2012	(r234059)
+++ head/usr.bin/truss/Makefile	Mon Apr  9 15:34:22 2012	(r234060)
@@ -23,7 +23,7 @@ syscalls.h:	syscalls.master
 		${.CURDIR}/i386.conf
 
 ioctl.c: ${.CURDIR}/../kdump/mkioctls
-	env MACHINE=${MACHINE} \
+	env MACHINE=${MACHINE} CPP="${CPP}" \
 		/bin/sh ${.CURDIR}/../kdump/mkioctls return ${DESTDIR}/usr/include > ${.TARGET}
 
 .if ${MACHINE_CPUARCH} == "i386"


More information about the svn-src-all mailing list