diff options
author | jbj <devnull@localhost> | 1998-10-08 14:59:17 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1998-10-08 14:59:17 +0000 |
commit | 1607fbe7a370485b5ae1dcf4ba0f7216a3cbb9bb (patch) | |
tree | 6527d31d59a041eac5894fb0b007e417118805fb /rpm.c | |
parent | dbc931969995fc56dd9b0361b7fbd8d2264d6472 (diff) | |
download | rpm-1607fbe7a370485b5ae1dcf4ba0f7216a3cbb9bb.tar.gz rpm-1607fbe7a370485b5ae1dcf4ba0f7216a3cbb9bb.tar.bz2 rpm-1607fbe7a370485b5ae1dcf4ba0f7216a3cbb9bb.zip |
Consolidate i18n baggage into AM_GNU_GETTEXT and system.h.
CVS patchset: 2425
CVS date: 1998/10/08 14:59:17
Diffstat (limited to 'rpm.c')
-rwxr-xr-x | rpm.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,13 +1,10 @@ #include "system.h" -#include <locale.h> - #include "build/rpmbuild.h" #include "build.h" #include "checksig.h" #include "install.h" -#include "intl.h" #include "lib/signature.h" #include "popt/popt.h" #include "query.h" @@ -580,8 +577,8 @@ int main(int argc, char ** argv) { /* set up the correct locale */ setlocale(LC_ALL, "" ); - bindtextdomain(RPMNLSPACKAGE, RPMNLSDIR); - textdomain(RPMNLSPACKAGE); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); /* Make a first pass through the arguments, looking for --rcfile */ /* as well as --arch and --os. We need to handle that before */ |