From 8052cb40a35b18d11e895d4267c86e3750e8dcc1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 19 Nov 1997 23:06:31 +0000 Subject: [PATCH] Ignore errors while installing catalog. --- po/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/Makefile b/po/Makefile index 32cdc2d530c..10098049cf7 100644 --- a/po/Makefile +++ b/po/Makefile @@ -61,11 +61,14 @@ include ../Rules $(MSGFMT) -o $@ $< # Install the message object files as libc.po in the language directory. -$(mo-installed): %.mo; $(do-install) +$(mo-installed): %.mo; $(do-install) || exit 0 .PHONY: linguas linguas.mo linguas: $(ALL_LINGUAS:=.po) linguas.mo: $(ALL_LINGUAS:=.mo) + +realclean: + rm -f $(ALL_LINGUAS:=.mo) # Copy the PO files from the translation coordinator's repository. -- 2.47.2