diff options
author | louiz’ <louiz@louiz.org> | 2019-11-12 00:30:14 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2019-11-12 00:30:14 +0100 |
commit | 00c1c9dfb345d7712b200844ea749bd87a7909db (patch) | |
tree | 4aa74bc570303fed8ed177e77ffe549508d82dd2 /doc | |
parent | 1dd0d694589fac7b07dfdcbcf341b151289fbb89 (diff) | |
download | biboumi-00c1c9dfb345d7712b200844ea749bd87a7909db.tar.gz biboumi-00c1c9dfb345d7712b200844ea749bd87a7909db.tar.bz2 biboumi-00c1c9dfb345d7712b200844ea749bd87a7909db.tar.xz biboumi-00c1c9dfb345d7712b200844ea749bd87a7909db.zip |
Doc: add a missing “cd build/” in one example
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.rst b/doc/developer.rst index 636e04e..416cf64 100644 --- a/doc/developer.rst +++ b/doc/developer.rst @@ -69,7 +69,7 @@ created): .. code-block:: bash :caption: Configure and build biboumi from inside the container - docker exec biboumi-e2e sh -c "cd biboumi && mkdir build && cmake .." + docker exec biboumi-e2e sh -c "cd biboumi && mkdir build/ && cd build/ && cmake .." This is needed (only once), because if you configure it from your host machine, then the paths generated by cmake will be all wrong when you try |