Skip to content

Commit 0cb9b23

Browse files
author
Jorge Aparicio
committed
fix location of the emitted object file
1 parent 9918471 commit 0cb9b23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/run-make/used/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ all:
77
else
88
all:
99
$(RUSTC) -C opt-level=3 --emit=obj used.rs
10-
nm -C used.o | grep FOO
11-
nm -C used.o | grep -v BAR
10+
nm -C $(TMPDIR)/used.o | grep FOO
11+
nm -C $(TMPDIR)/used.o | grep -v BAR
1212
endif

0 commit comments

Comments
 (0)