]> git.pld-linux.org Git - packages/poldek.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 19 Jun 2007 15:53:56 +0000 (15:53 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    poldek-fix-multilib.patch -> 1.2

poldek-fix-multilib.patch [deleted file]

diff --git a/poldek-fix-multilib.patch b/poldek-fix-multilib.patch
deleted file mode 100644 (file)
index 52fa124..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-Index: install/install.c
-===================================================================
-RCS file: /cvsroot/poldek/poldek/install/install.c,v
-retrieving revision 1.6
-retrieving revision 1.7
-diff -u -r1.6 -r1.7
---- install/install.c  17 Jun 2007 20:24:47 -0000      1.6
-+++ install/install.c  18 Jun 2007 16:12:43 -0000      1.7
-@@ -11,7 +11,7 @@
- */
- /*
--  $Id$
-+  $Id$
- */
- #include <vfile/vfile.h>
-@@ -315,7 +315,8 @@
- {
-     struct pkg *pkg, *pkg2;
-     int i, n, nmarked = 0;
--    
-+    int multilib = poldek_conf_MULTILIB; /* just for short */
-+
-     if (n_array_size(pkgs) < 2)
-         return n_array_size(pkgs);
-     
-@@ -334,14 +335,16 @@
-         
-         if (i == n_array_size(pkgs))
-             break;
--        
-+
-         pkg2 = n_array_nth(pkgs, i);
-         while (pkg_cmp_name(pkg, pkg2) == 0) {
--            pkg_unmark(pms, pkg2);
--            DBGF("unmark %s\n", pkg_id(pkg2));
--
-+            if (!multilib || (multilib && pkg_cmp_arch(pkg, pkg2) == 0)) {
-+                pkg_unmark(pms, pkg2);
-+                DBGF("unmark %s\n", pkg_id(pkg2));
-+                n++;
-+            }
-+            
-             i++;
--            n++;
-             if (i == n_array_size(pkgs))
-                 break;
-             pkg2 = n_array_nth(pkgs, i);
This page took 0.036067 seconds and 4 git commands to generate.