Windows: Fix perl string equality for Debug Builds

Use "eq" and not "=~"

Change-Id: Iac38ff9859ab40fc30aba0df90956b6029c04cb6
This commit is contained in:
Tony Acero
2013-09-13 21:42:25 -04:00
committed by Jeffrey Altman
parent 559cd780b3
commit b9d7e33a2f

View File

@@ -1,4 +1,4 @@
########################################################################
git ########################################################################
#
# Copyright (c) 2009, Secure Endpoints Inc.
# All rights reserved.
@@ -86,7 +86,7 @@ while(<>) {
if ("$(VER_PRERELEASE)") { print "#define VER_PRERELEASE 1\n"; }
if ("$(VER_PRIVATE)") { print "#define VER_PRIVATE \"$(VER_PRIVATE)\"\n"; }
if ("$(VER_SPECIAL)") { print "#define VER_SPECIAL \"$(VER_SPECIAL)\"\n"; }
if ("$(BUILD)" =~ "dbg") { print "#define VER_DEBUG 1\n"; }
if ("$(BUILD)" eq "dbg") { print "#define VER_DEBUG 1\n"; }
print "#define HOST \"$(COMPUTERNAME)\"\n";
} else {