From 40692ddfec1f415705dcac7e58350cf26e9db705 Mon Sep 17 00:00:00 2001 From: Richard Tucker Date: Wed, 14 Jan 1998 11:12:57 +0000 Subject: [PATCH] Change == to eq for string comparison Copied from Perforce Change: 19206 ServerID: perforce.ravenbrook.com --- mps/qa/test/script/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mps/qa/test/script/compile b/mps/qa/test/script/compile index f3ce7b1089c..e55aacff34f 100644 --- a/mps/qa/test/script/compile +++ b/mps/qa/test/script/compile @@ -41,7 +41,7 @@ sub compiler_settings { "-Winline -Waggregate-return -Wnested-externs -Wcast-qual ". "-Wshadow -Wmissing-prototypes -Wredundant-decls -Wcast-align ". "-O -g -ggdb3 -DMMQA_VERS_$INTERFACE_VERSION"; - if ($PLATFORM == "sos8gp") { + if ($PLATFORM eq "sos8gp") { $cc_opts = "-pg ".$cc_opts; } $cc_include = "-I$testlib_dir -I$MPS_INCLUDE_DIR";