summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwl <wl>2013-11-06 13:27:13 +0000
committerwl <wl>2013-11-06 13:27:13 +0000
commitf105fae3cfbaadba46123b884a573d5cfb858e08 (patch)
tree4fbfbad4b90bf5e47b6b8c40872c5352a696caf0
parentdccdffffc178518f0fa15ed75c375a8372e4726a (diff)
downloadgroff-f105fae3cfbaadba46123b884a573d5cfb858e08.tar.gz
Makefile.comm (.man.n): Use C locale.
Problem reported by Petr Man <petr@madnetwork.org>; fix suggested by Ralph Corderoy <ralph@inputplus.co.uk>.
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.comm4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a99c057..2e823344 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-11-06 Werner LEMBERG <wl@gnu.org>
+
+ Makefile.comm (.man.n): Use C locale.
+
+ Problem reported by Petr Man <petr@madnetwork.org>; fix suggested by
+ Ralph Corderoy <ralph@inputplus.co.uk>.
+
2013-07-24 Ingo Schwarze <schwarze@openbsd.org>
[mdoc] Implement `.%C'.
diff --git a/Makefile.comm b/Makefile.comm
index 67b164ae..5155f242 100644
--- a/Makefile.comm
+++ b/Makefile.comm
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2000, 2002-2004, 2006-2011
+# Copyright (C) 1989-2000, 2002-2004, 2006-2011, 2013
# Free Software Foundation, Inc.
# Written by James Clark (jjc@jclark.com)
#
@@ -137,7 +137,7 @@ extraclean: distclean
.man.n:
@echo Making $@ from $<
@-rm -f $@
- @sed -e "s|@APPRESDIR@|$(appresdir)|g" \
+ @LC_ALL=C sed -e "s|@APPRESDIR@|$(appresdir)|g" \
-e "s|@BINDIR@|$(bindir)|g" \
-e "s|@BROKEN_SPOOLER_FLAGS@|$(BROKEN_SPOOLER_FLAGS)|g" \
-e "s|@COMMON_WORDS_FILE@|$(common_words_file)|g" \