diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-02-23 16:43:25 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-02-23 16:43:25 +0000 |
commit | 3559bfef81cb60e79fc608e6d2b8b696f584237b (patch) | |
tree | 3e0d4dd7e9588266107c592f116fd7e6c21fdbfa | |
parent | 680629d5b2941070727b6cb542c98a3d28bc2328 (diff) | |
download | rpmdrake-3559bfef81cb60e79fc608e6d2b8b696f584237b.tar rpmdrake-3559bfef81cb60e79fc608e6d2b8b696f584237b.tar.gz rpmdrake-3559bfef81cb60e79fc608e6d2b8b696f584237b.tar.bz2 rpmdrake-3559bfef81cb60e79fc608e6d2b8b696f584237b.tar.xz rpmdrake-3559bfef81cb60e79fc608e6d2b8b696f584237b.zip |
Don't fail for missing .pom files
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index f283fe00..df151362 100644 --- a/po/Makefile +++ b/po/Makefile @@ -19,7 +19,7 @@ LOCALEDIR=$(DATADIR)/locale all: $(MOFILES) %.mo: %.po - if [ -z "`echo $(IGNOREPOMS) | grep $<`" ]; then cat $< "$<"m >> "$<"f; else cp $< "$<"f; fi + -if [ -z "`echo $(IGNOREPOMS) | grep $<`" ]; then cat $< "$<"m >> "$<"f; else cp $< "$<"f; fi ./clean_po.pl "$<"f > "$<"g msgfmt -o $@ "$<"g |