summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-19 17:16:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-19 17:16:24 +0000
commit9e1339a68f606f7c5ab50aac72c37f0d7dd69aa6 (patch)
tree0cd58eafb2ed667dc29234badeb4236c8ca3cec2
parent81768d1da5a134c735955ec916b67b9851e0a93e (diff)
* ext/aix_mksym.rb: no longer used.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/aix_mksym.rb12
2 files changed, 4 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index b0e6debc49..c4646679fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jan 20 02:15:53 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
+
+ * ext/aix_mksym.rb: no longer used.
+
Mon Jan 20 00:17:16 2003 Matt Armstrong <matt@lickey.com>
* file.c (eaccess): under windows, make eaccess() just call
diff --git a/ext/aix_mksym.rb b/ext/aix_mksym.rb
deleted file mode 100644
index 34b0de727e..0000000000
--- a/ext/aix_mksym.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-
-data = []
-IO.foreach("|/usr/ccs/bin/nm -p #{ARGV[0]}") do |line|
- line = line.split
- case line[1]
- when "B", "D"
- data << line[0]
- end
-end
-data.uniq!
-data.sort!
-open(ARGV[1], "w") {|exp| exp.puts "#!", data}