From: Erick Wilder Date: Mon, 27 Jul 2015 20:02:28 +0000 (-0300) Subject: Force file deletion at cleaning tasks X-Git-Tag: dev-2a51c9b95d06~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=073fd1381d07433d7a6b23191ec358ae97ec48f6;p=thirdparty%2Fbabel.git Force file deletion at cleaning tasks - Fresh install tests will fail if there's no file inside babel/localedata and/or babel/global.dat --- diff --git a/Makefile b/Makefile index 5bb68a9a..c0adaa10 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,8 @@ import-cldr: @python scripts/download_import_cldr.py clean-cldr: - @rm babel/localedata/*.dat - @rm babel/global.dat + @rm -f babel/localedata/*.dat + @rm -f babel/global.dat clean-pyc: @find . -name '*.pyc' -exec rm {} \;