summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorGaven Rendell <gaven@rendello.ca>2022-02-10 22:04:51 -0500
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-02-11 23:24:25 +0000
commit78ef608a6b4897e889d367f2fc9507ea73e63c6b (patch)
tree927a60e1377d4f976b91d89decfbe89bee4a7fa1 /Documentation
parent849f849905e48a44c59f7504267068212e12001b (diff)
downloadserenity-78ef608a6b4897e889d367f2fc9507ea73e63c6b.zip
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.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/BuildInstructionsOther.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/BuildInstructionsOther.md b/Documentation/BuildInstructionsOther.md
index 80ec35b438..34f663ead0 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