diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-20 06:32:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-20 06:32:14 +0000 |
commit | 40c90e006d41e460fba83e79dc325c60d63e64f3 (patch) | |
tree | 4863d10994ee130f9c76585d898bfefc3f52ecbd /intl/Makefile | |
parent | 58a7a3257fa0d46e1963c2143daeab6593f9102e (diff) | |
download | glibc-40c90e006d41e460fba83e79dc325c60d63e64f3.zip glibc-40c90e006d41e460fba83e79dc325c60d63e64f3.tar.gz glibc-40c90e006d41e460fba83e79dc325c60d63e64f3.tar.bz2 |
Update.
* intl/Makefile ($(objpfx)msgs.h): Use C locale for sed run.
Diffstat (limited to 'intl/Makefile')
-rw-r--r-- | intl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/Makefile b/intl/Makefile index 60700e2..ad38e26 100644 --- a/intl/Makefile +++ b/intl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 1995-2002, 2003 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 @@ -77,7 +77,7 @@ endif $(objpfx)msgs.h: po2test.sed ../po/de.po $(make-target-directory) - sed -f $^ > $@ + LC_ALL=C sed -f $^ > $@ CFLAGS-tst-gettext.c = -DTESTSTRS_H=\"$(objpfx)msgs.h\" CFLAGS-tst-gettext2.c = -DOBJPFX=\"$(objpfx)\" |