Skip to content

Commit

Permalink
Making object string explicitly joined by spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
sw17ch committed Oct 15, 2011
1 parent 5657fea commit 85950f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -78,7 +78,7 @@ namespace :target do
task :link => :build do
ld = TARGET[:linker]
args = TARGET[:linker_args].join(" ")
objs = OBJ.keys
objs = OBJ.keys.join(" ")
sh "#{ld} #{args} #{objs} -o #{PROG}.bin"
end

Expand Down

0 comments on commit 85950f5

Please sign in to comment.