* gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
* gdbarch.sh: Correct comment.
+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.
@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' \
# 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 \
# 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
# 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
#!/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