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 | 13a45c155959e31d2a00f79c574a56caddbd0951 (patch) | |
| tree | dfa0e8fd23bf8fd39e9a01c6c06fb4e9901821df /lib | |
| parent | acf883251ea782442db68c47155a31bec3d7ba67 (diff) | |
| download | ruby-13a45c155959e31d2a00f79c574a56caddbd0951.tar.gz ruby-13a45c155959e31d2a00f79c574a56caddbd0951.tar.xz ruby-13a45c155959e31d2a00f79c574a56caddbd0951.zip | |
* lib/mkmf.rb (create_makefile): support libraries without *.so.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@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 df555c5c8..ab3d77e80 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1096,7 +1096,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 |
