summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2023-03-11 20:12:37 -0500
committerLinus Groh <mail@linusgroh.de>2023-03-12 01:48:56 +0000
commit3cff36b7ab427e040c9cac80a41cde9cfa0ac75d (patch)
tree132381acdfe4a70456f34079f74a0d2b22eb2b2d /Documentation
parent952222ec4d82f4ac2d553d92449dba52f96c50b3 (diff)
downloadserenity-3cff36b7ab427e040c9cac80a41cde9cfa0ac75d.zip
Meta+CMake: Remove "image" ninja target in favor of "qemu-image"
"image" was an alias for "qemu-image". I want to add an `image` userland utility, which clashes with that shortname. So remove the existing "image" target. It was just an alias for "qemu-image". If you use serenity.sh to build, nothing changes. This only affects you if you run ninja manually -- you now have to say `ninja qemu-image` to build the disk image.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RunningTests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md
index 2ff64d7296..1fe29bc1d6 100644
--- a/Documentation/RunningTests.md
+++ b/Documentation/RunningTests.md
@@ -79,7 +79,7 @@ For completeness, a basic on-target test run will need the SerenityOS image buil
cmake -GNinja -S Meta/CMake/Superbuild -B Build/superbuild-x86_64
cmake --build Build/superbuild-x86_64
cd Build/x86_64
-ninja install && ninja image && ninja run
+ninja install && ninja qemu-image && ninja run
```
In the initial terminal, one can easily run the test runner script: