From 78ef608a6b4897e889d367f2fc9507ea73e63c6b Mon Sep 17 00:00:00 2001 From: Gaven Rendell Date: Thu, 10 Feb 2022 22:04:51 -0500 Subject: [PATCH] Documentation: Add coreutils dep to Alpine Linux build instructions `build-image-qemu.sh` depends on GNU's version of `du`: https://github.com/SerenityOS/serenity/blob/43d706a29e6d0ccdacb4907981a27c3bf176d5e8/Meta/build-image-qemu.sh#L47-L48 Alpine Linux doesn't use that version by default. --- Documentation/BuildInstructionsOther.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/BuildInstructionsOther.md b/Documentation/BuildInstructionsOther.md index 80ec35b4387..34f663ead06 100644 --- a/Documentation/BuildInstructionsOther.md +++ b/Documentation/BuildInstructionsOther.md @@ -75,6 +75,9 @@ First, make sure you have enabled the `community` repository in `/etc/apk/reposi # the basics, if you have not already done so apk add bash curl git util-linux sudo +# GNU coreutils for GNU's version of `du` +apk add coreutils + # rough equivalent of build-essential apk add build-base