1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

extmk.rb: hack for -framework

* ext/extmk.rb (mf.macro): replace NULs with spaces also in exts.mk
  which is used when dissable-shared.  fix r36437.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-07-19 12:21:49 +00:00
parent ff331d1442
commit f0810814bd

View file

@ -636,6 +636,7 @@ if $configure_only and $command_output
w = w0 = name.size + 2
h = " \\\n" + "\t" * (w / 8) + " " * (w % 8)
values.each do |s|
s = s.tr("\0", " ")
if s.size + w > max
print h
w = w0