We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be5fb1c + b48a599 commit 281c065Copy full SHA for 281c065
mrbgem.rake
@@ -31,8 +31,8 @@ MRuby::Gem::Specification.new('mruby-zmq') do |spec|
31
spec.linker.flags_before_libraries << "\"#{spec.build_dir}/build/lib/libzmq.a\""
32
`pkg-config --cflags \"#{spec.build_dir}/build/libzmq.pc\"`.split("\s").each do |cflag|
33
if cflag.start_with?('-I')
34
- spec.build.cxx.include_paths << cflag[2..] # strip "-I"
35
- spec.build.cc.include_paths << cflag[2..]
+ build.cxx.include_paths << cflag[2..] # strip "-I"
+ build.cc.include_paths << cflag[2..]
36
end
37
spec.cxx.flags << cflag
38
spec.cc.flags << cflag
0 commit comments