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 <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2011-04-07 12:46:18 +02:00
parent 3d8c298adb
commit 525a079503

View file

@ -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