diff options
author | Alan Wu <[email protected]> | 2022-07-29 14:18:26 -0400 |
---|---|---|
committer | Yuta Saito <[email protected]> | 2022-08-04 16:29:22 +0900 |
commit | c69582a5401ac7b6e59b87a8bcc8636c27eb923e (patch) | |
tree | 6f820ab01d7859355c3a8091879a62733a2997e2 | |
parent | 50d81bfbc19d9b2e3d4be511c26c3dff317e2f8e (diff) |
Quote $(BUILTRUBY) so paths with spaces work
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6193
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4da115ce4c..1808a643f3 100644 --- a/configure.ac +++ b/configure.ac @@ -3014,7 +3014,7 @@ STATIC= AS_IF([test "x$EXTSTATIC" = x], [ # When building ext bundles, a mach-o bundle needs to know its loader # program to bind symbols from the ruby executable - EXTDLDFLAGS='-bundle_loader $(BUILTRUBY)' + EXTDLDFLAGS="-bundle_loader '\$(BUILTRUBY)'" PREP="$PREP"' $(PROGRAM)' ]) rb_cv_dlopen=yes], |