about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2017-04-06 23:53:32 -0500
committerJorge Aparicio <japaricious@gmail.com>2017-04-06 23:53:32 -0500
commit98037ca43d4d96f93e73e1eb3df8e64372d8f929 (patch)
tree85fc37be5f55afe41e2d128536623a9189d08a0c
parentf4f79c3304602701b0a48e3ab77bc87903440e82 (diff)
downloadrust-98037ca43d4d96f93e73e1eb3df8e64372d8f929.tar.gz
rust-98037ca43d4d96f93e73e1eb3df8e64372d8f929.zip
don't pass -C to nm
the nm in our macOS bots don't support that flag and it's not really required
-rw-r--r--src/test/run-make/used/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/used/Makefile b/src/test/run-make/used/Makefile
index 5fe09e95a82..9d7aa30f874 100644
--- a/src/test/run-make/used/Makefile
+++ b/src/test/run-make/used/Makefile
@@ -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