diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-12-21 13:26:33 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-12-21 13:26:33 +0100 |
commit | 6ad4feb6e2c4dc7badfdfd57c0110d58567d7a7a (patch) | |
tree | 8c0487dcbdf4563aefe40afc2cc2b71e3a6e7e56 /apt-pkg/contrib/configuration.cc | |
parent | 8076139ead08124e86be5f993baa8a43c22b0137 (diff) | |
parent | f00d26304c1febd47d5d9aefdcb9dd7e25f4058c (diff) |
merged with mvo branch
Diffstat (limited to 'apt-pkg/contrib/configuration.cc')
-rw-r--r-- | apt-pkg/contrib/configuration.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 3109fd7a5..e8301d918 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -173,6 +173,11 @@ string Configuration::Find(const char *Name,const char *Default) const */ string Configuration::FindFile(const char *Name,const char *Default) const { + const Item *RootItem = Lookup("RootDir"); + std::string rootDir = (RootItem == 0) ? "" : RootItem->Value; + if(rootDir.size() > 0 && rootDir[rootDir.size() - 1] != '/') + rootDir.push_back('/'); + const Item *Itm = Lookup(Name); if (Itm == 0 || Itm->Value.empty() == true) { @@ -204,7 +209,7 @@ string Configuration::FindFile(const char *Name,const char *Default) const Itm = Itm->Parent; } - return val; + return rootDir + val; } /*}}}*/ // Configuration::FindDir - Find a directory name /*{{{*/ |