]> git.saurik.com Git - apt.git/commitdiff
Do not check for free space if --no-dowload is set
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:58:59 +0000 (16:58 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:58:59 +0000 (16:58 +0000)
Author: jgg
Date: 2002-03-27 05:26:24 GMT
Do not check for free space if --no-dowload is set

cmdline/apt-get.cc

index a6355af311ffaf882eaa5e3c50e9654f97f2ed15..e7ac0b65e5727002050c90283b7e45e249cc39bb 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.116 2002/03/26 07:38:58 jgg Exp $
+// $Id: apt-get.cc,v 1.117 2002/03/27 05:26:24 jgg Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -722,7 +722,8 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,
 
    /* Check for enough free space, but only if we are actually going to
       download */
-   if (_config->FindB("APT::Get::Print-URIs") == false)
+   if (_config->FindB("APT::Get::Print-URIs") == false &&
+       _config->FindB("APT::Get::Download",true) == true)
    {
       struct statvfs Buf;
       string OutputDir = _config->FindDir("Dir::Cache::Archives");