summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-12-21 13:48:48 -0800
committerGitHub <noreply@github.com>2024-12-21 16:48:48 -0500
commit970639b38b3fbf680f09f2cd057810ba8b91ed2d (patch)
tree58987da544d196263d26eaa17e6ad508bad30967 /docs
parentee4b3474a5a11b6cef020488a762a840499177bd (diff)
Fix editing PATH in macOS build instructions (#2379)
* Fix editing PATH in macOS build instructions * Need quotes for paths with spaces
Diffstat (limited to 'docs')
-rw-r--r--docs/BUILDING_MACOS.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/BUILDING_MACOS.md b/docs/BUILDING_MACOS.md
index 9fe0e1b11..08752943d 100644
--- a/docs/BUILDING_MACOS.md
+++ b/docs/BUILDING_MACOS.md
@@ -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)