@@ -18,11 +18,11 @@ The Docker image also defines the environment:
1818| :------------------- | :-----------------------------------: | :------------------------------------------------------ |
1919| ` PYTHON_VERSION ` | ` 2.7 ` | Python version |
2020| ` PYLITH_USER ` | ` pylith-dev ` | Username within container |
21- | ` BASE_DIR ` | ` /opt/pylith ` | Top-level directory for development workspace |
21+ | ` DEV_DIR ` | ` /opt/pylith ` | Top-level directory for development workspace |
2222| ` HOME ` | ` /home/${PYLITH_USER} ` | Home directory for user |
23- | ` INSTALL_DIR ` | ` ${BASE_DIR }/dest/debug ` | Directory where code is installed |
24- | ` TOPSRC_DIR ` | ` ${BASE_DIR }/src ` | Top-level directory for source code |
25- | ` TOPBUILD_DIR ` | ` ${BASE_DIR }/build/debug ` | Top-level directory for building |
23+ | ` INSTALL_DIR ` | ` ${DEV_DIR }/dest/debug ` | Directory where code is installed |
24+ | ` TOPSRC_DIR ` | ` ${DEV_DIR }/src ` | Top-level directory for source code |
25+ | ` TOPBUILD_DIR ` | ` ${DEV_DIR }/build/debug ` | Top-level directory for building |
2626| ` PYLITH_BUILDDIR ` | ` ${TOPBUILD_DIR}/pylith ` | Top-level directory where we build PyLith [ ^ vscode ] |
2727| ` PYLITH_DIR ` | ` ${INSTALL_DIR} ` | Directory containing installed PyLith [ ^ vscode ] |
2828| ` PYLITHDEPS_DIR ` | ` /opt/dependencies ` | Directory containing external dependencies [ ^ vscode ] |
@@ -44,7 +44,7 @@ You only need to run these setup steps once.
44442 . You need to have a [ GitHub] ( https://github.com ) account.
4545:::
4646
47- ### Fork repositories on GitHub
47+ ### Fork repository on GitHub
4848
49491 . Log in to your [ GitHub] ( https://github.com ) account.
5050
@@ -168,6 +168,16 @@ The consequence of using a relative link is that your local clone will look for
168168
169169### Configure and build PyLith for development
170170
171+ :::{important}
172+ Make sure your PyLith clone is on a v2.2 compatible branch.
173+ This is either ` releases/v2.2 ` from the ` geodynamics/pylith ` repository or one of your own branches from that branch.
174+
175+ ``` {code-block} bash
176+ cd /opt/pylith/src
177+ git checkout releases/v2.2
178+ ```
179+ :::
180+
171181``` {code-block} bash
172182cd ${TOPBUILD_DIR}/pylith
173183pushd ${TOPSRC_DIR} && autoreconf -if && popd
0 commit comments