* Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.
authorDaniel Jacobowitz <drow@false.org>
Wed, 12 Jul 2006 18:04:30 +0000 (18:04 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 12 Jul 2006 18:04:30 +0000 (18:04 +0000)
* gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
* gdbarch.sh: Correct comment.

gdb/ChangeLog
gdb/Makefile.in
gdb/gdb_indent.sh
gdb/gdb_mbuild.sh
gdb/gdbarch.sh
gdb/observer.sh

index b4f2fcf40e71a918ad75e5c54beba6ea95cdf6b1..1e0a356f5194d382f721e7c29fc4a8c8ffa68fa6 100644 (file)
@@ -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.
index 344efb25aa1f13ef94f15aaa218c2aa5efa7778b..21eeb50a9dd3668a36db00599aee559aa99c47e1 100644 (file)
@@ -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' \
index 41b95d2642b48178984d83ed0fe1cf0b4a6fe13b..115b99521fcb35ad2fbcdcc19d15ff788d3fe96f 100755 (executable)
@@ -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 \
index da5a1e7dbabd5fdd2f7d44221756d00b5561a02c..680555d38e9a20033e6e49e8e6ccf5daaf1615d6 100755 (executable)
 #  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
index 9e36fb67b107cea63e30a372d1ed15607e1152be..d142b87f5a799991030b0a3a7a7290313add0ae4 100755 (executable)
@@ -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
index dde2ad2a4034b1ead447ca62d3ab2e389eb792a0..e0bb5298245865695a490a341d9ad24faf307430 100755 (executable)
@@ -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
This page took 0.031579 seconds and 4 git commands to generate.