From 4ef6ee7d03dc418e8f57a610918cf31f39ba014e Mon Sep 17 00:00:00 2001 From: Erwin Janssen Date: Mon, 20 Jun 2016 22:36:08 +0200 Subject: [PATCH] Windows: Added BISON and SED to gvc pre-build step. --- lib/gvc.vcxproj | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/gvc.vcxproj b/lib/gvc.vcxproj index 38dc483b7..86ff1c79b 100644 --- a/lib/gvc.vcxproj +++ b/lib/gvc.vcxproj @@ -71,7 +71,11 @@ MachineX86 - %BISON% -dy common\htmlparse.y -o common\htmlparse.c + %BISON% -dy common\htmlparse.y -o common\htmlparse-intermediate.c +"%SED%" "s/yy/html/g" < common\htmlparse-intermediate.c > common\htmlparse.c +"%SED%" "s/yy/html/g" < common\htmlparse-intermediate.h > common\htmlparse.h +del common\htmlparse-intermediate.c +del common\htmlparse-intermediate.h @@ -97,7 +101,11 @@ MachineX86 - %BISON% -dy common\htmlparse.y -o common\htmlparse.c + %BISON% -dy common\htmlparse.y -o common\htmlparse-intermediate.c +"%SED%" "s/yy/html/g" < common\htmlparse-intermediate.c > common\htmlparse.c +"%SED%" "s/yy/html/g" < common\htmlparse-intermediate.h > common\htmlparse.h +del common\htmlparse-intermediate.c +del common\htmlparse-intermediate.h -- 2.50.1