From 4ae9132605dc7b0297bcda408ca7a2ad7de39d2f Mon Sep 17 00:00:00 2001 From: ttate Date: Fri, 4 Feb 2005 13:29:49 +0000 Subject: remove all files to replace ruby-dl with ruby-dl2. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/install.rb | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 ext/dl/install.rb (limited to 'ext/dl/install.rb') diff --git a/ext/dl/install.rb b/ext/dl/install.rb deleted file mode 100644 index 69b1834301..0000000000 --- a/ext/dl/install.rb +++ /dev/null @@ -1,49 +0,0 @@ -require 'mkmf' -require 'ftools' - -SO_LIBS = ["dl.so"] - -$ruby_version = CONFIG['MAJOR'] + "." + CONFIG['MINOR'] -$prefix = CONFIG['prefix'] -$libdir = File.join($prefix,'lib') -$rubylibdir = File.join($libdir, 'ruby', $ruby_version) -$arch = CONFIG['arch'] -$archdir = File.join($rubylibdir, $arch) - -def find(dir, match = /./) - Dir.chdir(dir) - files = [] - Dir.new(".").each{|file| - if( file != "." && file != ".." ) - case File.ftype(file) - when "file" - if( file =~ match ) - files.push(File.join(dir,file)) - end - when "directory" - files += find(file, match).collect{|f| File.join(dir,f)} - end - end - } - Dir.chdir("..") - return files -end - -def install() - rb_files = find(File.join(".","lib"), /.rb$/) - - SO_LIBS.each{|f| - File.makedirs($rubylibdir, "#{$archdir}") - File.install(f, File.join($archdir,f), 0555, true) - } - - rb_files.each{|f| - origfile = f - instfile = File.join($rubylibdir, origfile.sub("./lib/","")) - instdir = File.dirname(instfile) - File.makedirs(instdir) - File.install(origfile, instfile, 0644, true) - } -end - -install() -- cgit v1.2.3