summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-05 03:53:51 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-06-05 03:53:51 +0000
commit264c2f4fed76a2b7286c0d0cc98a507f6d8aa4dc (patch)
tree4951f440f5e03a982f443738d966eae0d52a4a10 /ext
parenta23516c25c416b743fde120bbfb372bb514cd2fe (diff)
* marshal.c (r_object): wrong type check for modules.
* marshal.c (w_object): should not dump anonymous classes/modules. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb.in12
1 files changed, 3 insertions, 9 deletions
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in
index 3f98afc474..04ae513672 100644
--- a/ext/extmk.rb.in
+++ b/ext/extmk.rb.in
@@ -71,13 +71,7 @@ end
LINK = "@CC@ -o conftest -I#$topdir -I#$top_srcdir #{CFLAGS} -I#$includedir @LDFLAGS@ %s %s %s conftest.c %s %s @LIBS@"
CPP = "@CPP@ @CPPFLAGS@ -I#$topdir -I#$top_srcdir #{CFLAGS} -I#$includedir %s %s %s conftest.c"
-if FileTest.readable? 'nul'
- $null = open('nul', 'w')
-elsif FileTest.readable? '/dev/null'
- $null = open('/dev/null', 'w')
-else
- $null = open('test.log', 'w')
-end
+$log = open('extmk.log', 'w')
$orgerr = $stderr.dup
$orgout = $stdout.dup
@@ -86,8 +80,8 @@ def xsystem command
puts command
return system(command)
end
- $stderr.reopen($null)
- $stdout.reopen($null)
+ $stderr.reopen($log)
+ $stdout.reopen($log)
r = system(command)
$stderr.reopen($orgerr)
$stdout.reopen($orgout)