summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-05-02 02:05:18 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-05-02 02:05:18 (GMT)
commita37157624bb4a45185898cd0f512a753560de12a (patch)
tree617d3e5cb6229e9bc6a9deb9d164bbb6af22ce8c
parent50db27739c1203c82fb290ee7e42726eebb6ccce (diff)
downloadCMake-a37157624bb4a45185898cd0f512a753560de12a.zip
CMake-a37157624bb4a45185898cd0f512a753560de12a.tar.gz
CMake-a37157624bb4a45185898cd0f512a753560de12a.tar.bz2
BUG: putenv syntax was wrong and caused a crash on the SGI
-rw-r--r--Source/ctest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 7e95bd3..f37440d 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -101,8 +101,8 @@ static const cmDocumentationEntry cmDocumentationSeeAlso[] =
int main (int argc, char *argv[])
{
cmSystemTools::EnableMSVCDebugHook();
- cmSystemTools::PutEnv("DART_TEST_FROM_DART");
- cmSystemTools::PutEnv("DASHBOARD_TEST_FROM_CTEST");
+ cmSystemTools::PutEnv("DART_TEST_FROM_DART=1");
+ cmSystemTools::PutEnv("DASHBOARD_TEST_FROM_CTEST=1");
int nocwd = 0;
if ( cmSystemTools::GetCurrentWorkingDirectory().size() == 0 )