mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
wrong fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0505b3889c
commit
f4f0be3a12
1 changed files with 3 additions and 2 deletions
|
@ -51,7 +51,7 @@ arc = CONFIG["LIBRUBY_A"]
|
||||||
|
|
||||||
makedirs [bindir, libdir, rubylibdir, archlibdir, sitelibdir, sitearchlibdir]
|
makedirs [bindir, libdir, rubylibdir, archlibdir, sitelibdir, sitearchlibdir]
|
||||||
|
|
||||||
ruby_bin = File.join(CONFIG["bindir"], ruby_install_name)
|
ruby_bin = File.join(bindir, ruby_install_name)
|
||||||
|
|
||||||
install ruby_install_name+exeext, ruby_bin+exeext, 0755
|
install ruby_install_name+exeext, ruby_bin+exeext, 0755
|
||||||
if rubyw_install_name and !rubyw_install_name.empty?
|
if rubyw_install_name and !rubyw_install_name.empty?
|
||||||
|
@ -76,6 +76,7 @@ end
|
||||||
|
|
||||||
Dir.chdir CONFIG["srcdir"]
|
Dir.chdir CONFIG["srcdir"]
|
||||||
|
|
||||||
|
ruby_shebang = File.join(CONFIG["bindir"], ruby_install_name)
|
||||||
for src in Dir["bin/*"]
|
for src in Dir["bin/*"]
|
||||||
next unless File.file?(src)
|
next unless File.file?(src)
|
||||||
next if /\/[.#]|(\.(old|bak|orig|rej|diff|patch|core)|~|\/core)$/i =~ src
|
next if /\/[.#]|(\.(old|bak|orig|rej|diff|patch|core)|~|\/core)$/i =~ src
|
||||||
|
@ -93,7 +94,7 @@ for src in Dir["bin/*"]
|
||||||
shebang = f.gets
|
shebang = f.gets
|
||||||
body = f.read
|
body = f.read
|
||||||
|
|
||||||
if shebang.sub!(/^\#!.*?ruby\b/) {"#!" + ruby_bin}
|
if shebang.sub!(/^\#!.*?ruby\b/) {"#!" + ruby_shebang}
|
||||||
f.rewind
|
f.rewind
|
||||||
f.print shebang, body
|
f.print shebang, body
|
||||||
f.truncate(f.pos)
|
f.truncate(f.pos)
|
||||||
|
|
Loading…
Reference in a new issue