summaryrefslogtreecommitdiffstats
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
commit7f359168cc9fe00c7a0218b8a0abeeaa0cc311f3 (patch)
tree0e5e48fa4165b4c51697b7caa7d8399f3e152a34 /ext
parentb4d71910eb8fceb48bcbf57b3ffdb2b61539c3b1 (diff)
downloadruby-7f359168cc9fe00c7a0218b8a0abeeaa0cc311f3.tar.gz
ruby-7f359168cc9fe00c7a0218b8a0abeeaa0cc311f3.tar.xz
ruby-7f359168cc9fe00c7a0218b8a0abeeaa0cc311f3.zip
* ext/extmk.rb.in (create_makefile): remove unnecessary -L option from
LIBS macro. git-svn-id: http://svn.ruby-lang.org/repos/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 5b4d9b94d..1ff6fe543 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 = []