about summary refs log tree commit diff
path: root/src/test/run-make/interdependent-c-libraries
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/interdependent-c-libraries
parent3887ca27f16771b960b57e1c80997b2482ba5b76 (diff)
downloadrust-0675dffac48101faa2bdb634682b2ddf3975bf31.tar.gz
rust-0675dffac48101faa2bdb634682b2ddf3975bf31.zip
rmake: Get all tests passing on MSVC
Diffstat (limited to 'src/test/run-make/interdependent-c-libraries')
-rw-r--r--src/test/run-make/interdependent-c-libraries/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/interdependent-c-libraries/Makefile b/src/test/run-make/interdependent-c-libraries/Makefile
index cf7683479f0..1268022e37b 100644
--- a/src/test/run-make/interdependent-c-libraries/Makefile
+++ b/src/test/run-make/interdependent-c-libraries/Makefile
@@ -8,7 +8,7 @@
 # correct to complete the linkage. If passed as "-lfoo -lbar", then the 'foo'
 # library will be stripped out, and the linkage will fail.
 
-all: $(call STATICLIB,foo) $(call STATICLIB,bar)
+all: $(call NATIVE_STATICLIB,foo) $(call NATIVE_STATICLIB,bar)
 	$(RUSTC) foo.rs
 	$(RUSTC) bar.rs
 	$(RUSTC) main.rs -Z print-link-args