* 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:
parent
e0f2823e31
commit
6e2c7fa123
6 changed files with 26 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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' \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue