blob: 72713c3b1adf1f75acd9840b223c0ac227e51ec9 [file] [log] [blame]
Andrew Geissler09036742021-06-25 14:25:14 -05001From c7a79e753e50f1a5f248ba5812c61616f2f524f0 Mon Sep 17 00:00:00 2001
Andrew Geissler4ed12e12020-06-05 18:00:41 -05002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 10 May 2019 16:47:38 +0200
4Subject: [PATCH] Do not init tables from dpkg configuration
5
6This would require sysroot relocation logic, and it's easier to just disable them.
7
8Upstream-Status: Inappropriate [oe-core specific]
9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10
11---
12 apt-pkg/init.cc | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc
Andrew Geissler95ac1b82021-03-31 14:34:31 -050016index b9d9b15..1725c59 100644
Andrew Geissler4ed12e12020-06-05 18:00:41 -050017--- a/apt-pkg/init.cc
18+++ b/apt-pkg/init.cc
19@@ -281,8 +281,8 @@ bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys)
20 return _error->Error(_("Unable to determine a suitable packaging system type"));
21 }
22
23- if (pkgInitArchTupleMap() == false)
24- return false;
25+// if (pkgInitArchTupleMap() == false)
26+// return false;
27
28 return Sys->Initialize(Cnf);
29 }