From 9bcefaafa8d911f0aca210886122f8b6e1aa052e Mon Sep 17 00:00:00 2001
From: dtrg <none@none>
Date: Sun, 30 Jul 2006 23:41:16 +0000
Subject: [PATCH] Broke dependency on tool_cpp in order to speed up the build.

---
 mach/proto/as/pmfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/mach/proto/as/pmfile b/mach/proto/as/pmfile
index f6deeaf25..ba771df84 100644
--- a/mach/proto/as/pmfile
+++ b/mach/proto/as/pmfile
@@ -8,11 +8,10 @@ local parser = yacc {
 		outputs = {"%U%-%I%.y"},
 		command = {
 			"cd %out[1]:dirname% && "..
-			  "%in[2]% -P -I%ROOTDIR%mach/%ARCH%/as -I"..d.." %CINCLUDES% %in[1]% > %out[1]%"
+			  "%BINDIR%%PLATDEP%/cpp -P -I%ROOTDIR%mach/%ARCH%/as -I"..d.." %CINCLUDES% %in[1]% > %out[1]%"
 		},
 		
 		file (d.."comm2.y"),
-		tool_cpp
 	}
 }
 
@@ -46,6 +45,9 @@ proto_as = cprogram {
 
 -- Revision history
 -- $Log$
--- Revision 1.1  2006-07-20 23:18:19  dtrg
+-- Revision 1.2  2006-07-30 23:41:16  dtrg
+-- Broke dependency on tool_cpp in order to speed up the build.
+--
+-- Revision 1.1  2006/07/20 23:18:19  dtrg
 -- First version in CVS.
 --