diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-27 16:16:24 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-27 16:16:24 +0000 |
commit | b6b023323cfd4dd5a7f02ae7a92ca45928d79704 (patch) | |
tree | 92c5c28786e9a822af0a7426f46be38618fa0672 /po/Makefile | |
parent | af8f26fb5bf0d7030f552cc5a8db497731b3a343 (diff) | |
download | rpmdrake-b6b023323cfd4dd5a7f02ae7a92ca45928d79704.tar rpmdrake-b6b023323cfd4dd5a7f02ae7a92ca45928d79704.tar.gz rpmdrake-b6b023323cfd4dd5a7f02ae7a92ca45928d79704.tar.bz2 rpmdrake-b6b023323cfd4dd5a7f02ae7a92ca45928d79704.tar.xz rpmdrake-b6b023323cfd4dd5a7f02ae7a92ca45928d79704.zip |
update po's, add compssusers dirty importing from gi
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/po/Makefile b/po/Makefile index 284396ec..ffbb9ebe 100644 --- a/po/Makefile +++ b/po/Makefile @@ -18,7 +18,8 @@ LOCALEDIR=$(DATADIR)/locale all: $(PGOAL).pot $(MOFILES) %.mo: %.po - msgfmt -o $@ $< + cat $< "$<"m >> "$<"f + msgfmt -o $@ "$<"f $(PL_CFILES): %_.c: % ../grpmi/po/fake_c.pl $< > $@ @@ -28,6 +29,7 @@ merge: $(PGOAL).pot echo "Merging $$n"; \ msgmerge "$$n" $< > "$$n"t; \ mv -f "$$n"t "$$n"; \ + ./get_from_compssusers.pl "$$n" >> "$$n"m; \ done $(PGOAL).pot: $(PL_CFILES) $(CFILES) @@ -44,5 +46,5 @@ install: done clean: - @rm -rf *.mo $(POFILES:%=%t) $(PL_CFILES) $(PGOAL).pot + @rm -rf *.mo *.pom *.pof $(POFILES:%=%t) $(PL_CFILES) $(PGOAL).pot |