From: Jakub Jelinek Date: Tue, 30 May 2017 08:27:04 +0000 (+0200) Subject: backport: Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environ... X-Git-Tag: releases/gcc-5.5.0~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cc088dd9dc8caf41e1540f273bbcdc545393c9c;p=thirdparty%2Fgcc.git backport: Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environment. Backported from mainline 2017-04-25 Jakub Jelinek * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the environment. From-SVN: r248673 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f81669cf7878..f556b18e2bda 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,11 @@ 2017-05-30 Jakub Jelinek Backported from mainline + 2017-04-25 Jakub Jelinek + + * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the + environment. + 2017-04-11 Jakub Jelinek PR rtl-optimization/80385 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c9fec159ef09..4e72d89b308c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2002,6 +2002,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