]> git.saurik.com Git - apt.git/commitdiff
fail installing build-deps if parsing them failed
authorDavid Kalnischkies <david@kalnischkies.de>
Wed, 30 Dec 2015 20:51:17 +0000 (21:51 +0100)
committerDavid Kalnischkies <david@kalnischkies.de>
Sat, 2 Jan 2016 15:19:40 +0000 (16:19 +0100)
Git-Dch: Ignore

apt-private/private-source.cc

index 52487248f0c8a97f61315199240bc9e7041d8cb8..a2621946abf4364e662f180eef2144d61c34883e 100644 (file)
@@ -1041,7 +1041,7 @@ bool DoBuildDep(CommandLine &CmdL)
         return false;
    }
 
-   if (InstallPackages(Cache, false, true) == false)
+   if (_error->PendingError() || InstallPackages(Cache, false, true) == false)
       return _error->Error(_("Failed to process build dependencies"));
    return true;
 }