From e1536a1e56cd879d296101554ec526a64cb71fd0 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Wed, 27 Apr 2022 13:16:42 -0400 Subject: [PATCH] Update yjit.md Fix configure line in YJIT build instructions --- doc/yjit/yjit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```