* Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.

* gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
	* gdbarch.sh: Correct comment.
This commit is contained in:
Daniel Jacobowitz 2006-07-12 18:04:30 +00:00
parent e0f2823e31
commit 6e2c7fa123
6 changed files with 26 additions and 2 deletions

View 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.

View 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' \

View file

@ -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 \

View file

@ -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

View file

@ -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

View file

@ -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