diff options
author | Tobias Burnus <burnus@net-b.de> | 2007-10-27 16:07:14 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2007-10-27 16:07:14 +0200 |
commit | 094817b07029ca9ce995a8b96c0527c781b0d8ad (patch) | |
tree | 2381269338862b578b43522c3a2e606d850245e5 | |
parent | f0112db9b3aa9f87bb4da7f52ca22a94b4ae04ec (diff) | |
download | gcc-094817b07029ca9ce995a8b96c0527c781b0d8ad.zip gcc-094817b07029ca9ce995a8b96c0527c781b0d8ad.tar.gz gcc-094817b07029ca9ce995a8b96c0527c781b0d8ad.tar.bz2 |
mk-kinds-h.sh: Change LANG=C to LC_ALL=C.
2007-10-27 Tobias Burnus <burnus@net-b.de>
* mk-kinds-h.sh: Change LANG=C to LC_ALL=C.
From-SVN: r129679
-rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
-rwxr-xr-x | libgfortran/mk-kinds-h.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index cbb272f..8d3a4b4 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2007-10-27 Tobias Burnus <burnus@net-b.de> + + * mk-kinds-h.sh: Change LANG=C to LC_ALL=C. + 2007-10-26 Tobias Burnus <burnus@net-b.de> * mk-kinds-h.sh: Add "LANG=C". diff --git a/libgfortran/mk-kinds-h.sh b/libgfortran/mk-kinds-h.sh index 0fbdd8b..1e97e5b 100755 --- a/libgfortran/mk-kinds-h.sh +++ b/libgfortran/mk-kinds-h.sh @@ -1,6 +1,6 @@ #!/bin/sh -LANG=C -export LANG +LC_ALL=C +export LC_ALL compile="$1" |