summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-12-23 15:47:59 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-12-23 15:47:59 -0800
commit74554e041a96be45dc64352e905107f0b394a673 (patch)
tree475de93db5857b9b22d04eaf4f148012f4b39542
parent210193478a367db9912907cb822c176e8161300f (diff)
parentc0f46d98a711824f8c31adbea465326fb61bfd77 (diff)
downloadmruby-74554e041a96be45dc64352e905107f0b394a673.tar.gz
mruby-74554e041a96be45dc64352e905107f0b394a673.zip
Merge pull request #670 from matsumoto-r/support_gem_libs_list
Support GEM_LIBS_LIST in Makefile4gem
-rw-r--r--mrbgems/build_tasks.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/mrbgems/build_tasks.rb b/mrbgems/build_tasks.rb
index f52a786b0..6dddef7a4 100644
--- a/mrbgems/build_tasks.rb
+++ b/mrbgems/build_tasks.rb
@@ -116,6 +116,7 @@ GEM_ARCHIVE_FILES += $(GEM_LIST)
GEM_CFLAGS_LIST := #{for_each_gem{|path, gemname| "#{File.read("#{path}/gem-cflags.tmp").chomp} "}}
GEM_LDFLAGS_LIST := #{for_each_gem{|path, gemname| "#{File.read("#{path}/gem-ldflags.tmp").chomp} "}}
+GEM_LIBS_LIST := #{for_each_gem{|path, gemname| "#{File.read("#{path}/gem-libs.tmp").chomp} "}}
__EOF__
end
end