Browse Source

ldconfig.fakechroot: support DPKG_ROOT

debextract
parent
commit
932a3716bc
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1
  1. 6
      ldconfig.fakechroot

6
ldconfig.fakechroot

@ -90,6 +90,12 @@ def main(): @@ -90,6 +90,12 @@ def main():
chroot = Path(os.environ["FAKECHROOT_BASE_ORIG"])
# if chrootless mode is used from within a fakechroot chroot, then
# FAKECHROOT_BASE_ORIG will point at the outer chroot. We want to use
# the path from DPKG_ROOT inside of that instead
if os.environ.get("DPKG_ROOT", "") not in ["", "/"]:
chroot /= os.environ["DPKG_ROOT"].lstrip("/")
if not (chroot / "sbin" / "ldconfig").exists():
sys.exit(0)

Loading…
Cancel
Save