summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-21 12:42:32 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-21 12:42:32 +0000
commit5024bd594de298ae1772d9224c6164aff42ff1fb (patch)
tree0e5e48fa4165b4c51697b7caa7d8399f3e152a34 /ext
parentce9ce9ad633dbb123e612dc2d8c177aaeb62555a (diff)
* 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
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in
index 5b4d9b94d7..1ff6fe543c 100644
--- a/ext/extmk.rb.in
+++ b/ext/extmk.rb.in
@@ -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 = []