From 54eae9295328952a0bb038c36de4bfe95092e059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Thu, 11 Oct 2007 10:18:03 +0000 Subject: [PATCH] Do not change dependancy root directory if not needed svn path=/trunk/; revision=29494 --- reactos/tools/rbuild/module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rbuild/module.cpp b/reactos/tools/rbuild/module.cpp index 18cb89db542..dd49f7c7d78 100644 --- a/reactos/tools/rbuild/module.cpp +++ b/reactos/tools/rbuild/module.cpp @@ -1234,7 +1234,7 @@ void Module::SetImportLibrary ( ImportLibrary* importLibrary ) { this->importLibrary = importLibrary; - dependency = new FileLocation ( IntermediateDirectory, + dependency = new FileLocation ( HasImportLibrary () ? IntermediateDirectory : output->directory, output->relative_path, HasImportLibrary () ? "lib" + name + ".a" : output->name ); }