From 525a079503add2c23dcec73797a8dd7842e905cf Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 7 Apr 2011 12:46:18 +0200 Subject: Supress rm(1) warnings showing up when running `make clean`. Use `rm -f` instead of just `rm` here to supress those annoying warnings about failed removal if either ".po~" backup files or compiled ".mo" files are missing. Signed-off-by: Lukas Fleischer --- po/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'po') diff --git a/po/Makefile b/po/Makefile index c92176de..8814d630 100644 --- a/po/Makefile +++ b/po/Makefile @@ -52,7 +52,7 @@ update-po: ${MAKE} ${UPDATEPOFILES} clean: - rm *.mo *.po\~ + rm -f *.mo *.po\~ install: all for l in ${LOCALES}; do mkdir -p ${DESTDIR}${PREFIX}/$$l/LC_MESSAGES/; done -- cgit v1.2.3-24-g4f1b