diff options
author | jbj <devnull@localhost> | 2001-01-15 22:55:49 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-01-15 22:55:49 +0000 |
commit | 082ccecf35f3fb73c2a58b9052f102e5d9386fc4 (patch) | |
tree | 454d2fe0bd0e0da67983acf82cf6613d2d2bef7f /po | |
parent | d229ea2db02fc71295836f5a37dce924a871f3b4 (diff) | |
download | librpm-tizen-082ccecf35f3fb73c2a58b9052f102e5d9386fc4.tar.gz librpm-tizen-082ccecf35f3fb73c2a58b9052f102e5d9386fc4.tar.bz2 librpm-tizen-082ccecf35f3fb73c2a58b9052f102e5d9386fc4.zip |
Add missing keyword=POPT_ line to xgettext extraction.
CVS patchset: 4440
CVS date: 2001/01/15 22:55:49
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 302332750..cb5a26f93 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -26,7 +26,7 @@ subdir = po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = @MKINSTALLDIRS@ +MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@ CC = @CC@ GENCAT = @GENCAT@ @@ -84,7 +84,7 @@ all-no: $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ - --add-comments --keyword=_ --keyword=N_ \ + --add-comments --keyword=_ --keyword=N_ --keyword=RPM_ \ --files-from=$(srcdir)/POTFILES.in \ && test ! -f $(PACKAGE).po \ || ( rm -f $(srcdir)/$(PACKAGE).pot \ @@ -207,7 +207,7 @@ dist distdir: update-po $(DISTFILES) update-po: Makefile $(MAKE) $(PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ + PATH=`pwd`/../intl:$$PATH; \ cd $(srcdir); \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ @@ -227,8 +227,8 @@ update-po: Makefile refresh-po: Makefile catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ - lang=`echo $$cat | sed 's/.mo//'`; \ - if $(MSGMERGE) $$lang.po $(NLSPACKAGE).pot > $$lang.pot ; then \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + if $(MSGMERGE) $$lang.po $(PACKAGE).pot > $$lang.pot ; then \ echo "$(MSGMERGE) of $$lang succeeded" ; \ mv -f $$lang.pot $$lang.po ; \ else \ |