From 19aff4f3bda6fb4af5c4be0afff2e31815822295 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 5 Apr 2005 21:10:10 -0400 Subject: [PATCH] COMP: hack fix for old sgi until bootstrap is fixed --- Source/kwsys/SystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index c508e3870..1e79ee834 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -2170,7 +2170,7 @@ SystemToolsAppendComponents( out_components.erase(out_components.end()-1, out_components.end()); } } - else if(*i != "." && *i != "") + else if(!(*i == ".") && !(*i != "")) { out_components.push_back(*i); }