diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 08:54:06 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 08:54:06 +0000 |
commit | 6c90adc602be8226da38a9b82f5ea14669a85acd (patch) | |
tree | 8fc3e884db40b26417cfe5fd8f46f3b39f36f23e /po/Makefile | |
parent | feeaba060b1061febb8dc5c8fe3a7371d8611626 (diff) | |
download | rpmdrake-6c90adc602be8226da38a9b82f5ea14669a85acd.tar rpmdrake-6c90adc602be8226da38a9b82f5ea14669a85acd.tar.gz rpmdrake-6c90adc602be8226da38a9b82f5ea14669a85acd.tar.bz2 rpmdrake-6c90adc602be8226da38a9b82f5ea14669a85acd.tar.xz rpmdrake-6c90adc602be8226da38a9b82f5ea14669a85acd.zip |
kill support for *.pom (now useless)
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/po/Makefile b/po/Makefile index 628973c1..7a88af06 100644 --- a/po/Makefile +++ b/po/Makefile @@ -9,9 +9,6 @@ POFILES = $(wildcard *.po) MOFILES = $(POFILES:%.po=%.mo) LANGS = $(POFILES:%.po=%) -# because of different charsets or encodings.. :-( -IGNOREPOMS = - PREFIX = $(RPM_BUILD_ROOT)/usr DATADIR = $(PREFIX)/share LOCALEDIR=$(DATADIR)/locale @@ -19,12 +16,7 @@ LOCALEDIR=$(DATADIR)/locale all: $(MOFILES) %.mo: %.po - -if [ -z "`echo $(IGNOREPOMS) | grep $<`" ]; then msgcat --use-first -o "$<"f $< "$<"m; else cp $< "$<"f; fi - ./clean_po.pl "$<"f > "$<"g - msgfmt -o $@ "$<"g - -%.pom: %.po - ./get_from_compssusers.pl "$<" > $@ + msgfmt -o $@ $< merge: $(PGOAL).pot @for n in $(POFILES); do \ |