Skip to content

Commit 23df5d6

Browse files
committed
Fix BOOST_INCLUDE path in documentation
1 parent 5fa22dd commit 23df5d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ cd MFC
6868
```
6969
and be sure MFC knows where to find Boost by appending to your dotfiles and sourcing them again
7070
```shell
71-
echo -e 'export BOOST_INCLUDE=/opt/homebrew/' | tee -a ~/.bash_profile ~/.zshrc
71+
echo -e "export BOOST_INCLUDE='$(brew --prefix --installed boost)/include'" | tee -a ~/.bash_profile ~/.zshrc
7272
. ~/.bash_profile 2>/dev/null || . ~/.zshrc 2>/dev/null
7373
! [ -z "${BOOST_INCLUDE+x}" ] && echo 'Environment is ready!' || echo 'Error: $BOOST_INCLUDE is unset. Please adjust the previous commands to fit with your environment.'
7474
```

docs/documentation/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ before configuring your environment:
106106

107107
```shell
108108
brew install coreutils python cmake fftw hdf5 gcc boost open-mpi
109-
echo -e 'export BOOST_INCLUDE=/opt/homebrew/' | tee -a ~/.bash_profile ~/.zshrc
109+
echo -e "export BOOST_INCLUDE='$(brew --prefix --installed boost)/include'" | tee -a ~/.bash_profile ~/.zshrc
110110
. ~/.bash_profile 2>/dev/null || . ~/.zshrc 2>/dev/null
111111
! [ -z "${BOOST_INCLUDE+x}" ] && echo 'Environment is ready!' || echo 'Error: $BOOST_INCLUDE is unset. Please adjust the previous commands to fit with your environment.'
112112
```

0 commit comments

Comments
 (0)