From d1ad30f7a517e69bc87d1347224f1c9ab38493b3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 25 Oct 2012 10:35:36 +0200 Subject: Static multi-database support Add new options (--multi-database, --default-database). Generate common code to -odb.?xx files and database-specific to -odb-.?xx. --- odb/profile.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'odb/profile.cxx') diff --git a/odb/profile.cxx b/odb/profile.cxx index fedd7a9..03bf8a4 100644 --- a/odb/profile.cxx +++ b/odb/profile.cxx @@ -12,8 +12,6 @@ using namespace std; - - static bool exist (profile_data::path const& p) { @@ -64,6 +62,12 @@ profile_search (char const* prof, void* arg) if (i == end) { + // Ignore the case where we didn't find the profile and this is the + // common database. + // + if (pd->db == database::common) + return string (); + cerr << pd->name << ": error: unable to locate options file for profile '" << prof << "'" << endl; throw profile_failure (); -- cgit v1.1