about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-12-02 12:02:06 +0000
committerbors <bors@rust-lang.org>2014-12-02 12:02:06 +0000
commit738d9803ac7d995cca3ff80b8ab1bd2e8fb11dad (patch)
treeb3909924a553e0eb34b0360a5f203b5c6df10986 /src/test
parent2b35e6fa0834a92e47a46eb7a8e045ba04fbbdc7 (diff)
parent2d3de6686eaa3e0c42a66cd1abf96edfd499b2a6 (diff)
downloadrust-738d9803ac7d995cca3ff80b8ab1bd2e8fb11dad.tar.gz
rust-738d9803ac7d995cca3ff80b8ab1bd2e8fb11dad.zip
auto merge of #19443 : nodakai/rust/another-missing-extracflags, r=alexcrichton
rust-lang/rust@102b1a5bf1a60eeafb752844e5c98fe5f4e3b992 was not enough!
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-make/static-dylib-by-default/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/static-dylib-by-default/Makefile b/src/test/run-make/static-dylib-by-default/Makefile
index 20bed0abbfd..1505e679af0 100644
--- a/src/test/run-make/static-dylib-by-default/Makefile
+++ b/src/test/run-make/static-dylib-by-default/Makefile
@@ -3,7 +3,7 @@
 all:
 	$(RUSTC) foo.rs
 	$(RUSTC) bar.rs
-	$(CC) main.c -o $(call RUN_BINFILE,main) -lbar
+	$(CC) main.c -o $(call RUN_BINFILE,main) -lbar $(EXTRACFLAGS)
 	rm $(TMPDIR)/*.rlib
 	rm $(call DYLIB,foo)
 	$(call RUN,main)