* ext/extmk.rb.in (create_makefile): remove unnecessary -L option from

LIBS macro.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2002-02-21 12:42:32 +00:00
parent ce9ce9ad63
commit 5024bd594d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 21 21:40:18 2002 Usaku Nakamura <usa@ruby-lang.org>
* ext/extmk.rb.in (create_makefile): remove unnecessary -L option from
LIBS macro.
Thu Feb 21 02:49:12 2002 Koji Arai <jca02266@nifty.ne.jp>
* pack.c (pack_pack): wrong # comment treatment.

View File

@ -447,7 +447,7 @@ target_prefix = #{target_prefix}
"
mfile.printf "LOCAL_LIBS = %s %s\n", $LOCAL_LIBS, $local_flags
mfile.printf "LIBS = -L%s %s\n", $libdir, $libs
mfile.printf "LIBS = %s\n", $libs
mfile.printf "OBJS = "
if !$objs then
$objs = []