From 4d07ba8b75513c319156d918c4473834271c42ba Mon Sep 17 00:00:00 2001 From: Sebastien Barre Date: Sat, 12 May 2001 07:29:23 -0400 Subject: [PATCH] fix + => += bug reported by A. Perera --- Source/cmSystemTools.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 6c92894ad..33c46a5a6 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -793,7 +793,7 @@ std::string cmSystemTools::FindLibrary(const char* name, tryPath = *p; tryPath += "/lib"; tryPath += name; - tryPath + ".so"; + tryPath += ".so"; if(cmSystemTools::FileExists(tryPath.c_str())) { return cmSystemTools::CollapseFullPath(tryPath.c_str()); @@ -801,7 +801,7 @@ std::string cmSystemTools::FindLibrary(const char* name, tryPath = *p; tryPath = "/lib"; tryPath += name; - tryPath + ".a"; + tryPath += ".a"; if(cmSystemTools::FileExists(tryPath.c_str())) { return cmSystemTools::CollapseFullPath(tryPath.c_str()); @@ -809,7 +809,7 @@ std::string cmSystemTools::FindLibrary(const char* name, tryPath = *p; tryPath = "/lib"; tryPath += name; - tryPath + ".sl"; + tryPath += ".sl"; if(cmSystemTools::FileExists(tryPath.c_str())) { return cmSystemTools::CollapseFullPath(tryPath.c_str());