use RPMNLS* rather then NLS*

CVS patchset: 1356
CVS date: 1997/01/24 19:04:14
This commit is contained in:
ewt 1997-01-24 19:04:14 +00:00
parent a34820cda3
commit 2c83a713fd
2 changed files with 4 additions and 4 deletions

View File

@ -9,8 +9,8 @@ RANLIB = @RANLIB@
OPTS = @DEFS@
LIBRPMRC_FILENAME=$(libdir)/rpmrc
LIBRPMALIAS_FILENAME=$(libdir)/rpmpopt
NLSDIR=$(prefix)/share/locale
NLSPACKAGE=rpm
RPMNLSDIR=$(prefix)/share/locale
RPMNLSPACKAGE=rpm
CFLAGS = @CFLAGS@ @INCPATH@ $(WARNINGS) $(OPTS) -I$(topdir) \
-I$(topdir)/lib -I$(topdir)/misc -Wall -Wstrict-prototypes \
-DLIBRPMRC_FILENAME="\"$(LIBRPMRC_FILENAME)"\" \

4
rpm.c
View File

@ -500,8 +500,8 @@ int main(int argc, char ** argv) {
/* set up the correct locale */
setlocale(LC_ALL, "" );
bindtextdomain(NLSPACKAGE, NLSDIR);
textdomain(NLSPACKAGE);
bindtextdomain(RPMNLSPACKAGE, RPMNLSDIR);
textdomain(RPMNLSPACKAGE);
/* Make a first pass through the arguments, looking for --rcfile */
/* as well as --arch and --os. We need to handle that before */