From 5cc92fcf27b65c069a7e21da491debb0afa692a4 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 31 Mar 2018 17:22:39 +0200 Subject: Dpkg: Fix default DATADIR Even though we always override it from the build system the default pathname got out-of-sync with the repository when the architecture tables got moved into the data directory. Fixes: commit 97309bef8b664c2d58cb689a3e82848021ae9bad --- scripts/Dpkg.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dpkg.pm b/scripts/Dpkg.pm index 0d171c080..7f06b15e6 100644 --- a/scripts/Dpkg.pm +++ b/scripts/Dpkg.pm @@ -107,7 +107,7 @@ our $PROGPATCH = $ENV{DPKG_PROGPATCH} // 'patch'; our $CONFDIR = '/etc/dpkg'; our $ADMINDIR = '/var/lib/dpkg'; our $LIBDIR = '.'; -our $DATADIR = '..'; +our $DATADIR = '../data'; $DATADIR = $ENV{DPKG_DATADIR} if defined $ENV{DPKG_DATADIR}; -- cgit v1.2.3