diff options
author | Maxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com> | 2022-04-27 13:16:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 13:16:42 -0400 |
commit | e1536a1e56cd879d296101554ec526a64cb71fd0 (patch) | |
tree | 9426b517b56075adaaf07d272a9b35c9447b12b7 /doc/yjit | |
parent | b43eb54a0cec71c49bb25aedfe0f2e08a9cf52f4 (diff) | |
download | ruby-e1536a1e56cd879d296101554ec526a64cb71fd0.tar.gz |
Update yjit.md
Fix configure line in YJIT build instructions
Diffstat (limited to 'doc/yjit')
-rw-r--r-- | doc/yjit/yjit.md | 2 |
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 ``` |