Skip to content

Commit faca82a

Browse files
committed
Switch from -o to --out-dir.
1 parent 59fd0f7 commit faca82a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ RUST_SRC=$(shell find $(VPATH)/. -type f -name '*.rs') $(COLOR_DATA_RS)
1414
all: libcssparser.dummy
1515

1616
libcssparser.dummy: cssparser.rc $(RUST_SRC)
17-
$(RUSTC) $(RUSTFLAGS) $<
17+
$(RUSTC) $(RUSTFLAGS) $< --out-dir .
1818
touch $@
1919

2020
cssparser-test: cssparser.rc $(RUST_SRC)
21-
$(RUSTC) $(RUSTFLAGS) $< -o $@ --test
21+
$(RUSTC) $(RUSTFLAGS) $< --out-dir . --test
2222

2323
.PHONY: check
2424
check: cssparser-test

0 commit comments

Comments
 (0)