diff options
author | Delan Azabani <delan@azabani.com> | 2024-06-24 12:55:00 +0800 |
---|---|---|
committer | Delan Azabani <delan@azabani.com> | 2024-06-24 12:55:00 +0800 |
commit | 5d33e4cd59093b29446d63ac70cf95cc9a25d81b (patch) | |
tree | a21d6c735c42d93335b54cfb09a4763dbc0e1cc6 /justfile | |
parent | 21865ccce0a5bf6edcb98a09b57b3f076ee9ba9f (diff) |
Fix build instructions in hacking.md and justfile
The stdenv phases don’t actually do anything (at least not anymore),
and our justfile doesn’t behave the same as our docs.
This patch removes the stdenv phases from the docs, documents our
usage of just, and makes `just setup` heed `$mesonFlags`.
Fixes #413.
Fixes #414.
Change-Id: Ieb0b2a8ae420526238b5f9a73d7849ec6919995d
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ clean: # Prepare meson for building setup: - meson setup build --prefix="$PWD/outputs/out" + meson setup build --prefix="$PWD/outputs/out" $mesonFlags # Build lix build *OPTIONS: |