diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-03-15 07:55:10 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-03-15 07:55:10 +0000 |
| commit | 1f777d88403ca508617b4d6edda190b5def3fd49 (patch) | |
| tree | ed6c0fe83a2b44ec207b66f10a342462a19cf004 /lib | |
| parent | bc092f2f5644fdf6a923ab0f32c101f11f8346e7 (diff) | |
| download | ruby-1f777d88403ca508617b4d6edda190b5def3fd49.tar.gz ruby-1f777d88403ca508617b4d6edda190b5def3fd49.tar.xz ruby-1f777d88403ca508617b4d6edda190b5def3fd49.zip | |
* lib/mkmf.rb (create_makefile): support libraries without *.so.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10036 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 76146ffd1..28e8378fd 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1094,7 +1094,7 @@ TARGET_SO = #{($extout ? '$(RUBYARCHDIR)/' : '')}$(DLLIB) CLEANLIBS = #{n}#{CONFIG['DLEXT']} #{n}il? #{n}tds #{n}map CLEANOBJS = *.#{$OBJEXT} *.#{$LIBEXT} *.s[ol] *.pdb *.exp *.bak -all: #{target ? $extout ? "install" : "$(DLLIB)" : "Makefile"} +all: #{$extout ? "install" : target ? "$(DLLIB)" : "Makefile"} static: $(STATIC_LIB)#{$extout ? " install-rb" : ""} } mfile.print CLEANINGS |
