summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-04-04 07:08:13 +0000
committerRoland McGrath <roland@gnu.org>2006-04-04 07:08:13 +0000
commit82f0f9ed70d5391f2134962cfc052013740da96a (patch)
tree06bbd3467508decc1b4894df7481466eb4270aad
parent97d901a672d83124287565d1b6649dc76a8e8659 (diff)
* iconvdata/Makefile (generate-8bit-table): Use LC_ALL=C.
(generate-8bit-gap-table): Likewise. ($(objpfx)iso8859-7jp.stmp): Likewise. Reported by S.Çağlar Onur <caglar@uludag.org.tr>.
-rw-r--r--ChangeLog7
-rw-r--r--iconvdata/Makefile8
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5a7bade0fd..74cc0e9394 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-04-04 Roland McGrath <roland@redhat.com>
+
+ * iconvdata/Makefile (generate-8bit-table): Use LC_ALL=C.
+ (generate-8bit-gap-table): Likewise.
+ ($(objpfx)iso8859-7jp.stmp): Likewise.
+ Reported by S.Çağlar Onur <caglar@uludag.org.tr>.
+
2006-04-03 Andreas Schwab <schwab@suse.de>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Terminate FDE
diff --git a/iconvdata/Makefile b/iconvdata/Makefile
index 39eb1e3863..1c80df16cf 100644
--- a/iconvdata/Makefile
+++ b/iconvdata/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1997-2004, 2005 Free Software Foundation, Inc.
+# Copyright (C) 1997-2004,2005,2006 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@@ -255,14 +255,14 @@ export AWK
define generate-8bit-table
$(make-target-directory)
-$(SHELL) ./gen-8bit.sh $< > $(@:stmp=T)
+LC_ALL=C $(SHELL) ./gen-8bit.sh $< > $(@:stmp=T)
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
touch $@
endef
define generate-8bit-gap-table
$(make-target-directory)
-$(SHELL) ./gen-8bit-gap.sh $< > $(@:stmp=T)
+LC_ALL=C $(SHELL) ./gen-8bit-gap.sh $< > $(@:stmp=T)
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
touch $@
endef
@@ -304,7 +304,7 @@ $(gen-8bit-gap-modules:%=$(objpfx)%.stmp): $(objpfx)%.stmp: $(objpfx)iconv-rules
$(objpfx)iso8859-7jp.stmp: $(charmaps)/ISO-8859-7 gen-8bit-gap-1.sh
$(make-target-directory)
- $(SHELL) ./gen-8bit-gap-1.sh $< > $(@:stmp=T)
+ LC_ALL=C $(SHELL) ./gen-8bit-gap-1.sh $< > $(@:stmp=T)
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
touch $@