summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-01-01 18:06:56 +0100
committerGitHub <noreply@github.com>2021-01-01 18:06:56 +0100
commit8a2ce0f455da32bc20978e68c0aad9efb4560abc (patch)
treea054cb24eab66467d5d2ecedc17ab52ee410e522
parent368a972a38f458b90d4db3c2959b214c3732f720 (diff)
parente069ddf3258b7eab2074639cade03ba03b0a03a4 (diff)
Merge pull request #4412 from acx0/fix-intro-doc
Fix `configure` error in introduction doc
-rw-r--r--doc/manual/src/introduction.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/src/introduction.md b/doc/manual/src/introduction.md
index f01fe7b38..d68445c95 100644
--- a/doc/manual/src/introduction.md
+++ b/doc/manual/src/introduction.md
@@ -165,10 +165,10 @@ You’re then dropped into a shell where you can edit, build and test
the package:
```console
-[nix-shell]$ tar xf $src
+[nix-shell]$ unpackPhase
[nix-shell]$ cd pan-*
-[nix-shell]$ ./configure
-[nix-shell]$ make
+[nix-shell]$ configurePhase
+[nix-shell]$ buildPhase
[nix-shell]$ ./pan/gui/pan
```