summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2022-04-27 13:16:42 -0400
committerGitHub <noreply@github.com>2022-04-27 13:16:42 -0400
commite1536a1e56cd879d296101554ec526a64cb71fd0 (patch)
tree9426b517b56075adaaf07d272a9b35c9447b12b7 /doc
parentb43eb54a0cec71c49bb25aedfe0f2e08a9cf52f4 (diff)
Update yjit.md
Fix configure line in YJIT build instructions
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index a09ff8439d..b96c703551 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -98,7 +98,7 @@ brew install openssl readline libyaml
# Configure in dev (debug) mode for development, build and install
./autogen.sh
-./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --disable--install-rdoc --with-opt-dir=$(brew --prefix openssl):$(brew --prefix readline):$(brew --prefix libyaml)
+./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --disable--install-rdoc --with-opt-dir="$(brew --prefix openssl):$(brew --prefix readline):$(brew --prefix libyaml)"
make -j install
```