about summary refs log tree commit diff
path: root/src/test/run-make/c-static-dylib
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-26 16:57:56 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-09-17 08:40:33 -0700
commit0675dffac48101faa2bdb634682b2ddf3975bf31 (patch)
treef297fbeb63271859634dc2ffeb8139cf21546a60 /src/test/run-make/c-static-dylib
parent3887ca27f16771b960b57e1c80997b2482ba5b76 (diff)
downloadrust-0675dffac48101faa2bdb634682b2ddf3975bf31.tar.gz
rust-0675dffac48101faa2bdb634682b2ddf3975bf31.zip
rmake: Get all tests passing on MSVC
Diffstat (limited to 'src/test/run-make/c-static-dylib')
-rw-r--r--src/test/run-make/c-static-dylib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make/c-static-dylib/Makefile b/src/test/run-make/c-static-dylib/Makefile
index 9914e12d569..f88786857cc 100644
--- a/src/test/run-make/c-static-dylib/Makefile
+++ b/src/test/run-make/c-static-dylib/Makefile
@@ -1,9 +1,9 @@
 -include ../tools.mk
 
-all: $(call STATICLIB,cfoo)
+all: $(call NATIVE_STATICLIB,cfoo)
 	$(RUSTC) foo.rs -C prefer-dynamic
 	$(RUSTC) bar.rs
-	rm $(TMPDIR)/$(call STATICLIB_GLOB,cfoo)
+	rm $(call NATIVE_STATICLIB,cfoo)
 	$(call RUN,bar)
 	$(call REMOVE_DYLIBS,foo)
 	$(call FAIL,bar)