summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 21:14:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 21:14:25 +0000
commitdeba55eb1a950b72788aa4cab10ccc032c1d37a7 (patch)
treed50faa0cedcc55a27c957fed9f0b2b30257e6fab /template
parent4a69c35c72aaf5f55b1a7a011e45f8834e7493c5 (diff)
configure.in: fix --with-ruby-version [ci skip]
* configure.in (RUBY_LIB_VERSION): Fix --with-ruby-version configuration option. get rid of quoting in config.status. * template/verconf.h.tmpl: quote RUBY_LIB_VERSION here. [ruby-core:66724] [Bug #10572] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-rw-r--r--template/verconf.h.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/verconf.h.tmpl b/template/verconf.h.tmpl
index 79c003e09f..5ee8a0e472 100644
--- a/template/verconf.h.tmpl
+++ b/template/verconf.h.tmpl
@@ -8,7 +8,7 @@
% elsif !C["RUBY_LIB_VERSION"]
#define RUBY_LIB_VERSION_STYLE 3 /* full */
% else
-#define RUBY_LIB_VERSION ${RUBY_LIB_VERSION}
+#define RUBY_LIB_VERSION "${RUBY_LIB_VERSION}"
% end
#define RUBY_EXEC_PREFIX "<%='${RUBY_EXEC_PREFIX}' if C['RUBY_EXEC_PREFIX']%>"
#define RUBY_LIB_PREFIX "${rubylibprefix}"