[PATCH] D16548: Ignore LC_CTYPE in sed invocation on Darwin
Hans Wennborg via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 25 13:03:35 PST 2016
hans added inline comments.
================
Comment at: test-release.sh:544
@@ -543,3 +543,3 @@
# sed adds a newline to the output, so pass $p3 through sed too.
- if ! cmp -s <(sed -e 's,Phase2,Phase3,g' $p2) <(sed -e '' $p3) \
+ if ! cmp -s <(env LC_CTYPE=C sed -e 's,Phase2,Phase3,g' $p2) <(env LC_CTYPE=C sed -e '' $p3) \
16 16 ; then
----------------
Please move the line break here to make it fit in 80 columns.
http://reviews.llvm.org/D16548
More information about the llvm-commits
mailing list