test/run-make: another missing $(EXTRACFLAGS).

rust-lang/rust@102b1a5bf1 was not enough!

Signed-off-by: NODA, Kai <nodakai@gmail.com>
This commit is contained in:
NODA, Kai 2014-11-23 21:36:42 +08:00
parent 09f04bf2c9
commit 2d3de6686e

View File

@ -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)