summaryrefslogtreecommitdiff
path: root/ext/readline
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-31 14:57:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-31 14:57:47 +0000
commit664813677963792e2ad36ef9370107dc41c7f27b (patch)
tree8f6c6ccf6b822b5851f0b42c95c2713c42430756 /ext/readline
parent6b9b85318a0cfd5fffb80426e3ff2bce133c26fd (diff)
readline/extconf.rb: fix typo
* ext/readline/extconf.rb: fix typo, `$defs` not `$DEFS`. [ruby-core:61756] [Bug #9578] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/readline')
-rw-r--r--ext/readline/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/readline/extconf.rb b/ext/readline/extconf.rb
index 70dfd0b6c2..4fd80799ed 100644
--- a/ext/readline/extconf.rb
+++ b/ext/readline/extconf.rb
@@ -102,7 +102,7 @@ unless readline.have_type("rl_hook_func_t")
# rl_hook_func_t is available since readline-4.2 (2001).
# Function is removed at readline-6.3 (2014).
# However, editline (NetBSD 6.1.3, 2014) doesn't have rl_hook_func_t.
- $DEFS << "-Drl_hook_func_t=Function"
+ $defs << "-Drl_hook_func_t=Function"
end
create_makefile("readline")