Use mingw convention for import libraries (libmodule.a)
Modified: branches/xmlbuildsystem/reactos/tools/rbuild/module.cpp
--- branches/xmlbuildsystem/reactos/tools/rbuild/module.cpp 2005-05-11 17:30:21 UTC (rev 15222) +++ branches/xmlbuildsystem/reactos/tools/rbuild/module.cpp 2005-05-11 17:37:46 UTC (rev 15223) @@ -637,9 +637,7 @@
Module::GetDependencyPath () const { if ( HasImportLibrary () )
- {
- return ReplaceExtension ( GetPath(), ".a" );
- }
+ return ReplaceExtension ( GetPathWithPrefix ( "lib" ), ".a" );
else return GetPath(); }