From a4fe35523c8afb414540767d189ae454df0b269e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20Dur=C3=A1n?= Date: Mon, 3 Feb 2014 19:44:57 +0100 Subject: [PATCH] [Vendor] BS files for :xcode projects are collected differently than :static. --- lib/motion/project/vendor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/vendor.rb b/lib/motion/project/vendor.rb index 6bde3ce4..9a82c0b3 100644 --- a/lib/motion/project/vendor.rb +++ b/lib/motion/project/vendor.rb @@ -220,7 +220,7 @@ EOS end end - @bs_files = Dir.glob('*.bridgesupport').map { |x| File.expand_path(x) } + @bs_files = Dir.glob("#{build_dir}/*.bridgesupport").map { |x| File.expand_path(x) } @libs = Dir.glob("#{build_dir}/*.a").map { |x| File.expand_path(x) } end end