]> git.saurik.com Git - apt.git/commitdiff
* README.arch updates, comment in apt-pkg/algorithm.h added, apt-pkg/cacheiterators...
authorMichael Vogt <michael.vogt@ubuntu.com>
Wed, 31 Aug 2005 14:56:06 +0000 (14:56 +0000)
committerMichael Vogt <michael.vogt@ubuntu.com>
Wed, 31 Aug 2005 14:56:06 +0000 (14:56 +0000)
README.arch
apt-pkg/algorithms.h
apt-pkg/cacheiterators.h

index c02d573500a6b3b20f32002f8f746367ef6c1c3e..92870d614a244dd4d5c9c4d13ee147444550e4b4 100644 (file)
@@ -4,5 +4,9 @@ packages (in addtion to the usual build-depends):
 xmlto perlsgml sgml2x sgmlspl docbook
 
 then run:
-debian/rules arch-build
 
+$ debian/rules arch-build
+
+that will build packages in the "debian/arch-build" directory. It will
+honor "DEB_BUILD_PROG_OPTS" as options that are passed to debuild (e.g. -S 
+may be usefull).
index 174a7f58d18aea15aa0c36bf2fde93c243a3de8a..b95218061903e4ea84d2b08445a41eee3878eaaf 100644 (file)
@@ -118,7 +118,8 @@ class pkgProblemResolver
    
    // Try to resolve problems only by using keep
    bool ResolveByKeep();
-   
+
+   // Install all protected packages   
    void InstallProtect();   
    
    pkgProblemResolver(pkgDepCache *Cache);
index ce3c4165efbe6337e812e878f1330d788acec005..c3a0d0a5a45fa3132a30ea57118e26d0b9737069 100644 (file)
@@ -244,7 +244,7 @@ class pkgCache::PrvIterator
    inline PkgIterator OwnerPkg() {return PkgIterator(*Owner,Owner->PkgP + Owner->VerP[Prv->Version].ParentPkg);};
    inline unsigned long Index() const {return Prv - Owner->ProvideP;};
 
-   inline PrvIterator() : Owner(0), Prv(0), Type(PrvVer) {};
+   inline PrvIterator() : Prv(0), Type(PrvVer), Owner(0)  {};
 
    inline PrvIterator(pkgCache &Owner,Provides *Trg,Version *) :
           Prv(Trg), Type(PrvVer), Owner(&Owner)