comparison rakefile @ 113:fb3aa8075988

D2 support for the linux port.
author Jacob Carlborg <doob@me.com>
date Wed, 06 Apr 2011 21:57:23 +0200
parents 9f4c18c268b2
children 536e43f63c81
comparison
equal deleted inserted replaced
112:9f4c18c268b2 113:fb3aa8075988
136 if isDebug 136 if isDebug
137 rsp.puts "-debug" 137 rsp.puts "-debug"
138 rsp.puts "-g" 138 rsp.puts "-g"
139 end 139 end
140 Find.find( srcdir_abs ) do |path| 140 Find.find( srcdir_abs ) do |path|
141 if path =~ /\.d$/ then 141 if path =~ /\.d$/ && path !~ /browser|mozilla/ then
142 rsp.puts win_path(path)[ srcdir_abs.size+1 .. -1 ] 142 rsp.puts win_path(path)[ srcdir_abs.size+1 .. -1 ]
143 end 143 end
144 end 144 end
145 rsp.close 145 rsp.close
146 146