From e97caf8b03ac7cd466a36d68dda8b762d4f4a596 Mon Sep 17 00:00:00 2001 From: guigues Date: Thu, 29 Jan 2009 08:45:29 +0000 Subject: [PATCH] =?utf8?q?Refixed=20a=20f*%=C2=A3!!""#=20bug=20for=20at=20?= =?utf8?q?least=20the=20third=20time=20!=20What=20happened=20with=20cvs=20?= =?utf8?q?=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- kernel/src/bbtkUtilities.cxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/kernel/src/bbtkUtilities.cxx b/kernel/src/bbtkUtilities.cxx index 7f8ed76..eeaabe5 100644 --- a/kernel/src/bbtkUtilities.cxx +++ b/kernel/src/bbtkUtilities.cxx @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkUtilities.cxx,v $ Language: C++ - Date: $Date: 2009/01/28 11:54:04 $ - Version: $Revision: 1.12 $ + Date: $Date: 2009/01/29 08:45:29 $ + Version: $Revision: 1.13 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -279,8 +279,10 @@ namespace bbtk #endif #elif defined(_WIN32) - if (c != '\\') - libname = path+"\\bb"; + if (c != '\\') + libname += "\\bb"; + else + libname += "bb"; libname += pkgname; libname += ".dll"; #endif -- 2.45.1