From 4575613ebd1f2a713856b68307cb7572af2303ae Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 23 Oct 2002 17:40:36 +0000 Subject: * configure.in (LIBPATHFLAG): should escape $. [ruby-dev:18572] * mkconfig.rb: never substute escaped $$. * instruby.rb: not install LIBRUBY_SO unless enable-shared. [ruby-dev:18569] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ configure.in | 2 +- instruby.rb | 7 +++++-- mkconfig.rb | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 935c7416d..9587ebee6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Thu Oct 24 02:22:41 2002 Nobuyoshi Nakada + + * configure.in (LIBPATHFLAG): should escape $. [ruby-dev:18572] + + * mkconfig.rb: never substute escaped $$. + + * instruby.rb: not install LIBRUBY_SO unless enable-shared. + [ruby-dev:18569] + Wed Oct 23 19:16:06 2002 Nobuyoshi Nakada * eval.c (rb_eval): added NODE_DSYM, symbol literal with diff --git a/configure.in b/configure.in index da394dcb0..e4e850787 100644 --- a/configure.in +++ b/configure.in @@ -779,7 +779,7 @@ if test "$with_dln_a_out" != yes; then netbsd*) LDSHARED='${CC} -shared' if test "$rb_cv_binary_elf" = yes; then LDFLAGS="-Wl,-export-dynamic" - LIBPATHFLAG=' -L%1$s -Wl,-R%1$s' + LIBPATHFLAG=' -L%1$$s -Wl,-R%1$$s' fi rb_cv_dlopen=yes ;; openbsd*) LDSHARED="ld -Bforcearchive -Bshareable" diff --git a/instruby.rb b/instruby.rb index 557a81b03..48a0e4cf3 100644 --- a/instruby.rb +++ b/instruby.rb @@ -20,6 +20,7 @@ destdir ||= '' $:.unshift CONFIG["srcdir"]+"/lib" require 'ftools' +require 'shellwords' class Installer < File; end class << Installer @@ -66,6 +67,8 @@ archlibdir = destdir+CONFIG["archdir"] sitelibdir = destdir+CONFIG["sitelibdir"] sitearchlibdir = destdir+CONFIG["sitearchdir"] mandir = destdir+CONFIG["mandir"] + "/man1" +configure_args = Shellwords.shellwords(CONFIG["configure_args"]) +enable_shared = configure_args.include?('--enable-shared') dll = CONFIG["LIBRUBY_SO"] lib = CONFIG["LIBRUBY"] arc = CONFIG["LIBRUBY_A"] @@ -76,7 +79,7 @@ Installer.install ruby_install_name+exeext, bindir+"/"+ruby_install_name+exeext, if rubyw_install_name and !rubyw_install_name.empty? Installer.install rubyw_install_name+exeext, bindir, 0755, true end -Installer.install dll, bindir, 0755, true unless dll == lib +Installer.install dll, bindir, 0755, true if enable_shared and dll != lib Installer.install lib, libdir, 0555, true unless lib == arc Installer.install arc, archlibdir, 0644, true Installer.install "config.h", archlibdir, 0644, true @@ -97,7 +100,7 @@ Dir.chdir CONFIG["srcdir"] Installer.install "sample/irb.rb", "#{bindir}/irb", 0755, true -Dir.glob("lib/*{.rb,help-message}") do |f| +Dir.glob("lib/**/*{.rb,help-message}") do |f| dir = File.dirname(f).sub!(/\Alib/, rubylibdir) || rubylibdir Installer.makedirs dir, true unless File.directory? dir Installer.install f, dir, 0644, true diff --git a/mkconfig.rb b/mkconfig.rb index 0109f0973..aeecd1441 100644 --- a/mkconfig.rb +++ b/mkconfig.rb @@ -39,7 +39,7 @@ File.foreach "config.status" do |line| next if $install_name and /^RUBY_INSTALL_NAME$/ =~ name next if $so_name and /^RUBY_SO_NAME$/ =~ name v = " CONFIG[\"" + name + "\"] = " + - val.gsub(/\$\{?(\w+)\}?/) {"$(#{$1})"}.dump + "\n" + val.gsub(/\$(?:\$|\{?(\w+)\}?)/) {$1?"$(#{$1})":$&}.dump + "\n" if fast[name] v_fast << v else -- cgit