diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:04 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:04 +0000 |
commit | 7b0229fe01e9b300e1a67d82f7a6511c31444756 (patch) | |
tree | a2fe9702bdfe22f155f9aeb7f1f9bd0dc6f593ba /apt-pkg | |
parent | 9031a668d32b42ac86228a4a8b256bc7281868ef (diff) |
Fixed default dirs
Author: jgg
Date: 1998-10-09 19:57:21 GMT
Fixed default dirs
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/init.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 27353c878..c8b35de17 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.cc,v 1.6 1998/09/26 05:34:19 jgg Exp $ +// $Id: init.cc,v 1.7 1998/10/09 19:57:21 jgg Exp $ /* ###################################################################### Init - Initialize the package library @@ -36,7 +36,7 @@ bool pkgInitialize(Configuration &Cnf) Cnf.Set("Dir::State::status","/var/lib/dpkg/status"); // Cache - Cnf.Set("Dir::Cache","/tmp/"); + Cnf.Set("Dir::Cache","/var/cache/apt/"); Cnf.Set("Dir::Cache::archives","archives/"); Cnf.Set("Dir::Cache::srcpkgcache","srcpkgcache.bin"); Cnf.Set("Dir::Cache::pkgcache","pkgcache.bin"); |