forget to add a passing argument into another build_file.call

This commit is contained in:
Watson
2013-04-28 20:23:28 +09:00
parent 2c3d0e2686
commit 2bbc2752cd

View File

@@ -181,7 +181,7 @@ module Motion; module Project;
spec_objs = []
if config.spec_mode
# Build spec files too, but sequentially.
spec_objs = config.spec_files.map { |path| build_file.call(path) }
spec_objs = config.spec_files.map { |path| build_file.call(objs_build_dir, path) }
objs += spec_objs
end