summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/extmk.rb.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ad515649d..3868270e5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
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 = []