Skip to content

Commit

Permalink
* mkconfig.rb: initialize global variables to avoid warnings.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Jul 27, 2003
1 parent 93f8a40 commit baf3f1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Sun Jul 27 21:16:30 2003 WATANABE Hirofumi <[email protected]>

* ext/openssl/extconf.rb: better support MinGW. add
dir_config("kerberos") and with_config("pkg-config").
dir_config("kerberos") and with_config("pkg-config").

* mkconfig.rb: initialize global variables to avoid warnings.

Sun Jul 27 14:43:37 2003 NAKAMURA, Hiroshi <[email protected]>

Expand Down
5 changes: 5 additions & 0 deletions mkconfig.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!./miniruby -s

# avoid warnings with -d.
$srcdir ||= nil
$install_name ||= nil
$so_name ||= nil

require File.dirname($0)+"/lib/ftools"
mkconfig = File.basename($0)

Expand Down

0 comments on commit baf3f1c

Please sign in to comment.