aboutsummaryrefslogtreecommitdiff
path: root/gcc/intl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/intl.c')
-rw-r--r--gcc/intl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/intl.c b/gcc/intl.c
index e5aa941..2b2a9f0 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 = _("`");