]> git.lizzy.rs Git - rust.git/commitdiff
don't pass -C to nm
authorJorge Aparicio <japaricious@gmail.com>
Fri, 7 Apr 2017 04:53:32 +0000 (23:53 -0500)
committerJorge Aparicio <japaricious@gmail.com>
Fri, 7 Apr 2017 04:53:32 +0000 (23:53 -0500)
the nm in our macOS bots don't support that flag and it's not really required

src/test/run-make/used/Makefile

index 5fe09e95a828d1973595dc6dcab1ab198bca95f8..9d7aa30f874825068620a0b87b21e71bac0502d7 100644 (file)
@@ -7,5 +7,5 @@ all:
 else
 all:
        $(RUSTC) -C opt-level=3 --emit=obj used.rs
-       nm -C $(TMPDIR)/used.o | grep FOO
+       nm $(TMPDIR)/used.o | grep FOO
 endif