aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2017-04-25 21:44:17 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2017-04-25 21:44:17 +0200
commitdadf1fc7ff5363863dab8506dfb1e10dfa83a575 (patch)
tree37e68a5d9dbe1669c44a79790fddc44836884284
parent1913c8f63fba23103dff324669f581cb2248d98f (diff)
downloadgcc-dadf1fc7ff5363863dab8506dfb1e10dfa83a575.zip
gcc-dadf1fc7ff5363863dab8506dfb1e10dfa83a575.tar.gz
gcc-dadf1fc7ff5363863dab8506dfb1e10dfa83a575.tar.bz2
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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 729d067..91f81aa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2017-04-25 Jakub Jelinek <jakub@redhat.com>
+
+ * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the
+ environment.
+
2017-04-25 Uros Bizjak <ubizjak@gmail.com>
PR target/70799
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 74d1912..f675e07 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