From ac0521e52643bf01b6d15d8c7f7cc5974de5e196 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 27 Feb 2017 12:46:43 -0800 Subject: [PATCH] travis: Fix typos in linux-tested-targets These flags were supposed to be relevant for musl, not for gnu cc #39979 --- src/ci/docker/linux-tested-targets/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ci/docker/linux-tested-targets/Dockerfile b/src/ci/docker/linux-tested-targets/Dockerfile index e935226e361..659e1048fff 100644 --- a/src/ci/docker/linux-tested-targets/Dockerfile +++ b/src/ci/docker/linux-tested-targets/Dockerfile @@ -39,8 +39,8 @@ ENV RUST_CONFIGURE_ARGS \ # way to produce "super compatible" binaries. # # See: https://github.com/rust-lang/rust/issues/34978 -ENV CFLAGS_i686_unknown_linux_gnu=-Wa,-mrelax-relocations=no \ - CFLAGS_x86_64_unknown_linux_gnu=-Wa,-mrelax-relocations=no +ENV CFLAGS_i686_unknown_linux_musl=-Wa,-mrelax-relocations=no \ + CFLAGS_x86_64_unknown_linux_musl=-Wa,-mrelax-relocations=no ENV SCRIPT \ python2.7 ../x.py test \