diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-07-12 18:04:30 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-07-12 18:04:30 +0000 |
commit | 6e2c7fa123326af40f73d9e7e9738a7eb40275a6 (patch) | |
tree | 9fdcbf547a4c684ec65e81a407251df6bf91776f | |
parent | e0f2823e31950d4ae7d7e5f9338804dd7c0f6dc0 (diff) | |
download | gdb-6e2c7fa123326af40f73d9e7e9738a7eb40275a6.zip gdb-6e2c7fa123326af40f73d9e7e9738a7eb40275a6.tar.gz gdb-6e2c7fa123326af40f73d9e7e9738a7eb40275a6.tar.bz2 |
* Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.
* gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
* gdbarch.sh: Correct comment.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 | ||||
-rwxr-xr-x | gdb/gdb_indent.sh | 5 | ||||
-rwxr-xr-x | gdb/gdb_mbuild.sh | 5 | ||||
-rwxr-xr-x | gdb/gdbarch.sh | 2 | ||||
-rwxr-xr-x | gdb/observer.sh | 5 |
6 files changed, 26 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b4f2fcf..1e0a356 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2006-07-12 Mike Frysinger <vapier@gentoo.org>: + Daniel Jacobowitz <dan@codesourcery.com> + + * Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'. + * gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise. + * gdbarch.sh: Correct comment. + 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com> * MAINTAINERS: Add Alfred Szmidt for the Hurd. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 344efb2..21eeb50 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1151,7 +1151,9 @@ init.c: $(INIT_FILES) @rm -f init.c-tmp init.l-tmp @touch init.c-tmp @echo gdbtypes > init.l-tmp - @-echo $(INIT_FILES) | \ + @-LANG=c ; export LANG ; \ + LC_ALL=c ; export LC_ALL ; \ + echo $(INIT_FILES) | \ tr ' ' '\012' | \ sed \ -e '/^gdbtypes.[co]$$/d' \ diff --git a/gdb/gdb_indent.sh b/gdb/gdb_indent.sh index 41b95d2..115b995 100755 --- a/gdb/gdb_indent.sh +++ b/gdb/gdb_indent.sh @@ -3,6 +3,11 @@ # Try to find a GNU indent. There could be a BSD indent in front of a # GNU gindent so when indent is found, keep looking. +# Make certain that the script is not running in an internationalized +# environment. +LANG=c ; export LANG +LC_ALL=c ; export LC_ALL + gindent= indent= paths=`echo $PATH | sed \ diff --git a/gdb/gdb_mbuild.sh b/gdb/gdb_mbuild.sh index da5a1e7..680555d 100755 --- a/gdb/gdb_mbuild.sh +++ b/gdb/gdb_mbuild.sh @@ -22,6 +22,11 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02111-1301, USA +# Make certain that the script is not running in an internationalized +# environment. +LANG=c ; export LANG +LC_ALL=c ; export LC_ALL + usage() { cat <<EOF diff --git a/gdb/gdbarch.sh b/gdb/gdbarch.sh index 9e36fb6..d142b87 100755 --- a/gdb/gdbarch.sh +++ b/gdb/gdbarch.sh @@ -22,7 +22,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. -# Make certain that the script is running in an internationalized +# Make certain that the script is not running in an internationalized # environment. LANG=c ; export LANG LC_ALL=c ; export LC_ALL diff --git a/gdb/observer.sh b/gdb/observer.sh index dde2ad2..e0bb529 100755 --- a/gdb/observer.sh +++ b/gdb/observer.sh @@ -1,5 +1,10 @@ #!/bin/sh -e +# Make certain that the script is not running in an internationalized +# environment. +LANG=c ; export LANG +LC_ALL=c ; export LC_ALL + if test $# -ne 3 then echo "Usage: $0 <h|inc> <observer.texi> <observer.out>" 1>&2 |