mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-26 14:46:16 +00:00
Fix editing PATH in macOS build instructions (#2379)
* Fix editing PATH in macOS build instructions * Need quotes for paths with spaces
This commit is contained in:
parent
ee4b3474a5
commit
970639b38b
1 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ make -j
|
|||
sudo make install
|
||||
```
|
||||
|
||||
Edit your `~/.bash_profile`/`~/.zsh_profile` (or whichever shell you use) to add the new binutils binaries to the system PATH
|
||||
Edit your `~/.bash_profile`/`~/.zprofile` (or whichever shell you use) to add the new binutils binaries to the system PATH
|
||||
```bash
|
||||
echo "export PATH=$PATH:/opt/cross/bin" >> ~/.bash_profile
|
||||
echo 'export PATH="$PATH:/opt/cross/bin"' >> ~/.bash_profile
|
||||
```
|
||||
|
||||
Reload `~/.bash_profile` (or just launch a new terminal tab)
|
||||
|
|
Loading…
Reference in a new issue