From be0cf8ed70694f23e2a586bfb7341aebc48a6e71 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Wed, 11 May 2005 17:37:46 +0000 Subject: [PATCH] Use mingw convention for import libraries (libmodule.a) svn path=/branches/xmlbuildsystem/; revision=15223 --- reactos/tools/rbuild/module.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reactos/tools/rbuild/module.cpp b/reactos/tools/rbuild/module.cpp index 97d79986209..9820906abae 100644 --- a/reactos/tools/rbuild/module.cpp +++ b/reactos/tools/rbuild/module.cpp @@ -637,9 +637,7 @@ string Module::GetDependencyPath () const { if ( HasImportLibrary () ) - { - return ReplaceExtension ( GetPath(), ".a" ); - } + return ReplaceExtension ( GetPathWithPrefix ( "lib" ), ".a" ); else return GetPath(); }