]> git.saurik.com Git - apt.git/commitdiff
- fix "apt-get source pkg=ver" if binary name != source name
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 8 Dec 2008 17:33:43 +0000 (09:33 -0800)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 8 Dec 2008 17:33:43 +0000 (09:33 -0800)
    (LP: #202219)
* doc/makefile:
  - add examples/apt-https-method-example.conf

cmdline/apt-get.cc
debian/changelog

index eda37a31e405adda56ac894a0d074df6324a6ce9..40ae02400e03f4b3f3fe345a5ac51a32e20b4bf9 100644 (file)
@@ -1295,9 +1295,9 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs,
    {
       string Ver = Parse->Version();
       
-      // Skip name mismatches
-      if (IsMatch == true && Parse->Package() != Src)
-        continue;
+      // show name mismatches
+      if (IsMatch == true && Parse->Package() != Src) 
+        ioprintf(c1out,  _("No source package '%s' picking '%s' instead"), Parse->Package(), Src);
       
       if (VerTag.empty() == false)
       {
index 0f20db8a343c88048ceb4c4d87c50ee24ca752e3..1ab8e09688ed2dd01e08e1e7a2d81abeee158536 100644 (file)
@@ -26,6 +26,10 @@ apt (0.7.17) UNRELEASED; urgency=low
   * cmdline/apt-cache.cc:
     - remove the gettext from a string that consists entirely 
       of variables (LP: #56792)
+    - fix "apt-get source pkg=ver" if binary name != source name
+      (LP: #202219)
+  * doc/makefile:
+    - add examples/apt-https-method-example.conf
   * apt-pkg/cacheiterators.h:
     - add missing checks for Owner == 0 in end()
   * apt-pkg/deb/dpkgpm.cc: