Fix dependency config generating in current folder

This commit is contained in:
Thraix
2019-10-25 14:45:44 +02:00
parent d9f7dc4d17
commit 95976c32c3
+1 -1
View File
@@ -188,7 +188,7 @@ void ConfigFileConf::CreateXMLFile(const std::string& filepath)
configuration.AddXMLObject({"dependency",{},*it});
makegen.AddXMLObject(configuration);
std::ofstream xmlFile("makegen.xml");
std::ofstream xmlFile(conf.configPath + "makegen.xml");
xmlFile << makegen;
}
}