diff options
author | Matthias Klose <doko@debian.org> | 2004-07-23 06:59:35 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2004-07-23 06:59:35 +0000 |
commit | c2c36d38e2c7374f79da7008a88854c9608edb73 (patch) | |
tree | 733ffa5c5ebd113d4b7cdda28aee3ebf76af1d0b /gcc/intl.c | |
parent | 11abc112af6e70657bf78e83436f3891195abdce (diff) | |
download | gcc-c2c36d38e2c7374f79da7008a88854c9608edb73.tar.gz |
intl.c (gcc_init_libintl): Use PACKAGE for the text domain.
2004-07-23 Matthias Klose <doko@debian.org>
intl.c (gcc_init_libintl): Use PACKAGE for the text domain.
configure.ac: Add AC_DEFINE_UNQUOTED for PACKAGE.
config.h: Regenerate.
configure: Likewise.
From-SVN: r85072
Diffstat (limited to 'gcc/intl.c')
-rw-r--r-- | gcc/intl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/intl.c b/gcc/intl.c index e5aa941021f..2b2a9f09732 100644 --- a/gcc/intl.c +++ b/gcc/intl.c @@ -51,8 +51,8 @@ gcc_init_libintl (void) setlocale (LC_ALL, ""); #endif - (void) bindtextdomain ("gcc", LOCALEDIR); - (void) textdomain ("gcc"); + (void) bindtextdomain (PACKAGE, LOCALEDIR); + (void) textdomain (PACKAGE); /* Opening quotation mark. */ open_quote = _("`"); |