summaryrefslogtreecommitdiff
path: root/apt-pkg/sourcelist.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2009-08-08 09:53:25 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2009-08-08 09:53:25 +0200
commitdee2822ae83aea4c161036a892cea6622a8e8510 (patch)
treed7ec59b33ee0973ba36123ced62af041c6a15fac /apt-pkg/sourcelist.cc
parent2b5c0d21114e200f524c2ff199bf1ce9e0d923fa (diff)
parent9a64707c285290c4e191e04d92c0fab9f6f118f5 (diff)
merge with apt-sid
* backout my fix for the sources.list issue, there is already one in
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r--apt-pkg/sourcelist.cc17
1 files changed, 6 insertions, 11 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc
index 85a20f0b8..4b3abe918 100644
--- a/apt-pkg/sourcelist.cc
+++ b/apt-pkg/sourcelist.cc
@@ -157,25 +157,20 @@ bool pkgSourceList::ReadMainList()
// CNC:2003-11-28 - Entries in sources.list have priority over
// entries in sources.list.d.
string Main = _config->FindFile("Dir::Etc::sourcelist");
- string noSourceMsg;
+ string Parts = _config->FindDir("Dir::Etc::sourceparts");
+
if (FileExists(Main) == true)
Res &= ReadAppend(Main);
- else
- {
- // only print the warning if we can't load a valid sourcefile in the end
+ else if (FileExists(Parts) == false)
+ // Only warn if there are no sources.list.d.
_error->WarningE("FileExists",_("Unable to read %s"),Main.c_str());
- _error->PopMessage(noSourceMsg);
- }
- string Parts = _config->FindDir("Dir::Etc::sourceparts");
if (FileExists(Parts) == true)
Res &= ReadSourceDir(Parts);
- else
+ else if (FileExists(Main) == false)
+ // Only warn if there is no sources.list file.
_error->WarningE("FileExists",_("Unable to read %s"),Parts.c_str());
- if (SrcList.empty() == true && noSourceMsg.empty() == false)
- _error->Warning(noSourceMsg.c_str());
-
return Res;
}
/*}}}*/