X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.cpp;h=da63cc9464f3de13756673db1a8c8c6181f9c9ab;hb=39e1c3a79129a1718b5751c17a1cc6cc6903090e;hp=9ade53032d7481ac8bfbdccedf8e897e2c49e990;hpb=c6715e02cb52993ee2a07797acc6466ead72f2e6;p=builder.git diff --git a/source/config.cpp b/source/config.cpp index 9ade530..da63cc9 100644 --- a/source/config.cpp +++ b/source/config.cpp @@ -178,11 +178,11 @@ void Config::finish() void Config::save() const { - FS::Path fn=package.get_source()/".options.cache"; + FS::Path fn=package.get_source()/".options"; OptionMap::const_iterator i=options.find("profile"); if(i!=options.end()) - fn=package.get_source()/(".options."+i->second.value+".cache"); + fn=package.get_source()/(".options."+i->second.value); IO::BufferedFile out(fn.str(), IO::M_WRITE);