summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-10-18 18:50:50 +0200
committerAndreas Kling <kling@serenityos.org>2020-10-18 20:33:02 +0200
commit57c2da1f86dd051af781c6b1e18f66601d6be609 (patch)
tree8feaf14d1f35e58a317470155a1c50a063e266a6 /Documentation
parentf8886ef5baa6fe44688ac1f3a76984a322971653 (diff)
downloadserenity-57c2da1f86dd051af781c6b1e18f66601d6be609.zip
Documentation: Remove "flock" from dependencies
The build system no longer uses "flock", so stop telling people they need to install it.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/BuildInstructions.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md
index 95165b93ae..6485c70ff9 100644
--- a/Documentation/BuildInstructions.md
+++ b/Documentation/BuildInstructions.md
@@ -60,8 +60,7 @@ Ensure your CMake version is >= 3.16 with `cmake --version`. If your system does
#### macOS prerequisites
Make sure you have all the dependencies installed:
```bash
-brew tap discoteq/discoteq
-brew install coreutils flock qemu e2fsprogs m4 autoconf libtool automake bash gcc@10
+brew install coreutils qemu e2fsprogs m4 autoconf libtool automake bash gcc@10
brew cask install osxfuse
Toolchain/BuildFuseExt2.sh
```
@@ -70,7 +69,6 @@ Notes:
- fuse-ext2 is not available as brew formula so it must be installed using `BuildFuseExt2.sh`
- Xcode and `xcode-tools` must be installed (`git` is required by some scripts)
- coreutils is needed to build gcc cross compiler
-- `flock` command can also be installed with `brew install util-linux` but in that case you will need to add it to `$PATH`
- qemu is needed to run the compiled OS image. You can also build it using the `BuildQemu.sh` script
- osxfuse, e2fsprogs, m4, autoconf, automake, libtool and `BuildFuseExt2.sh` are needed if you want to build the root filesystem disk image natively on macOS. This allows mounting an EXT2 fs and also installs commands like `mke2fs` that are not available on stock macOS.
- bash is needed because the default version installed on macOS doesn't support globstar
@@ -79,7 +77,7 @@ Notes:
#### OpenBSD prerequisites
```
-pkg_add bash gmp gcc git flock gmake sudo
+pkg_add bash gmp gcc git gmake sudo
```
#### FreeBSD prerequisites