diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-11 15:12:52 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-11 15:12:52 +0000 |
| commit | 7822695471c7b3cd936695adf9603e2cca55f58f (patch) | |
| tree | f3d710e8fa1d5a65631c93b5c5a70e93aafdd5da | |
| parent | 691241368dfc30f89eed3b55909fa28a71e27179 (diff) | |
| download | ruby-7822695471c7b3cd936695adf9603e2cca55f58f.tar.gz ruby-7822695471c7b3cd936695adf9603e2cca55f58f.tar.xz ruby-7822695471c7b3cd936695adf9603e2cca55f58f.zip | |
* ext/extmk.rb (create_makefile): -no-undefined -> --no-undefined.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/extmk.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed Dec 11 23:35:43 2002 WATANABE Hirofumi <eban@ruby-lang.org> + + * ext/extmk.rb (create_makefile): -no-undefined -> --no-undefined. + Wed Dec 11 17:54:59 2002 Yukihiro Matsumoto <matz@ruby-lang.org> * io.c (io_read): takes optional second argument to specify a diff --git a/ext/extmk.rb b/ext/extmk.rb index a0e848cfe..876433d28 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -42,7 +42,7 @@ def extmake(target) init_mkmf if /linux/ =~ RUBY_PLATFORM and $configure_args['--enable-shared'] and CONFIG["GNU_LD"] == "yes" - $DLDFLAGS << " -Wl,-no-undefined" + $DLDFLAGS << " -Wl,--no-undefined" end begin |
