summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/mkmf.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 8a21666b76..86fc49155a 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -615,7 +615,7 @@ MSG
def append_cppflags(flags, *opts)
Array(flags).each do |flag|
- if checking_for "whether #{flag} is accepted as CPPFLAGS" {
+ if checking_for("whether #{flag} is accepted as CPPFLAGS") {
try_cppflags(flag, *opts)
}
$CPPFLAGS << " " << flag
@@ -637,7 +637,7 @@ MSG
def append_cflags(flags, *opts)
Array(flags).each do |flag|
- if checking_for "whether #{flag} is accepted as CFLAGS" {
+ if checking_for("whether #{flag} is accepted as CFLAGS") {
try_cflags(flag, *opts)
}
$CFLAGS << " " << flag
@@ -659,7 +659,7 @@ MSG
def append_ldflags(flags, *opts)
Array(flags).each do |flag|
- if checking_for "whether #{flag} is accepted as LDFLAGS" {
+ if checking_for("whether #{flag} is accepted as LDFLAGS") {
try_ldflags(flag, *opts)
}
$LDFLAGS << " " << flag