aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake/src/mhmakeparser.y
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-10-18 06:31:05 +0000
committermarha <marha@users.sourceforge.net>2010-10-18 06:31:05 +0000
commitf7b6403a13075049d9577e6f061b6d7f718d3ca9 (patch)
treecef844b3c6e57e872e50668df5d62fa03effd028 /tools/mhmake/src/mhmakeparser.y
parent057471268f10a87f27bda540049c83efcde43689 (diff)
downloadvcxsrv-f7b6403a13075049d9577e6f061b6d7f718d3ca9.tar.gz
vcxsrv-f7b6403a13075049d9577e6f061b6d7f718d3ca9.tar.bz2
vcxsrv-f7b6403a13075049d9577e6f061b6d7f718d3ca9.zip
Also rebuild everything if one of the exported variables is changed
Diffstat (limited to 'tools/mhmake/src/mhmakeparser.y')
-rw-r--r--tools/mhmake/src/mhmakeparser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakeparser.y b/tools/mhmake/src/mhmakeparser.y
index c11c84319..107194d70 100644
--- a/tools/mhmake/src/mhmakeparser.y
+++ b/tools/mhmake/src/mhmakeparser.y
@@ -190,7 +190,7 @@ imvarassignment: STRING IMEQUAL maybeemptyexpression
pvarassignment: STRING PEQUAL maybeemptyexpression
{
m_Variables[$1]=m_Variables[$1]+g_SpaceString+$3;
- PRINTF(("Setting variable %s to %s\n",$1.c_str(), $3.c_str()));
+ PRINTF(("Adding to variable %s: %s\n",$1.c_str(), $3.c_str()));
}
;