mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
3d8c298adb
commit
525a079503
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ update-po:
|
||||||
${MAKE} ${UPDATEPOFILES}
|
${MAKE} ${UPDATEPOFILES}
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm *.mo *.po\~
|
rm -f *.mo *.po\~
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
for l in ${LOCALES}; do mkdir -p ${DESTDIR}${PREFIX}/$$l/LC_MESSAGES/; done
|
for l in ${LOCALES}; do mkdir -p ${DESTDIR}${PREFIX}/$$l/LC_MESSAGES/; done
|
||||||
|
|
Loading…
Add table
Reference in a new issue