summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-17 12:13:24 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-17 12:13:24 +0900
commit3e3a8c18b941c4c6518e59a39c6cb5a6b36fd452 (patch)
treee68b59e29b6f2ae3078eaac1b61c1666be4a0856 /tools
parent74e531ecabe07bfe987e32ff52d2239810d74617 (diff)
downloadmruby-3e3a8c18b941c4c6518e59a39c6cb5a6b36fd452.tar.gz
mruby-3e3a8c18b941c4c6518e59a39c6cb5a6b36fd452.zip
avoid updating existing libmruby.a to avoid problems on low time resolution file systems; close #136
Diffstat (limited to 'tools')
-rw-r--r--tools/mrbc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mrbc/Makefile b/tools/mrbc/Makefile
index 1440f0e4d..9ecda4a59 100644
--- a/tools/mrbc/Makefile
+++ b/tools/mrbc/Makefile
@@ -5,7 +5,7 @@
# extension of the executable-file is modifiable(.exe .out ...)
BASEDIR := ../../src
TARGET := ../../bin/mrbc
-LIBR := ../../lib/libmruby.a
+LIBR := ../../lib/libmruby_core.a
ifeq ($(OS),Windows_NT)
EXE := $(TARGET).exe
else