diff options
Diffstat (limited to 'mdbp')
-rw-r--r-- | mdbp/mmdebstrap.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mdbp/mmdebstrap.py b/mdbp/mmdebstrap.py index 21862c6..c5139b5 100644 --- a/mdbp/mmdebstrap.py +++ b/mdbp/mmdebstrap.py @@ -70,11 +70,12 @@ def main() -> None: hostarch = build.get("hostarch") or buildarch if buildarch == hostarch: - buildessential = set(("build-essential",)) + buildessential = set(("build-essential", "fakeroot")) else: buildessential = set(("crossbuild-essential-" + hostarch, "libc-dev:" + hostarch, - "libstdc++-dev:" + hostarch)) + "libstdc++-dev:" + hostarch, + "fakeroot")) buildpath = pathlib.PurePath(build.get("buildpath", "/build/build")) enablelog = build["output"].get("log", True) |