From: Jakub Jelinek Date: Tue, 25 Apr 2017 19:44:17 +0000 (+0200) Subject: Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environment. X-Git-Tag: basepoints/gcc-9~7797 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dadf1fc7ff5363863dab8506dfb1e10dfa83a575;p=thirdparty%2Fgcc.git Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environment. * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environment. From-SVN: r247266 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 729d0676f627..91f81aaec4cf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-04-25 Jakub Jelinek + + * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the + environment. + 2017-04-25 Uros Bizjak PR target/70799 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 74d191207d79..f675e073ecc7 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2139,6 +2139,7 @@ s-specs : Makefile optionlist: s-options ; @true s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk + LC_ALL=C ; export LC_ALL ; \ $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist $(STAMP) s-options