From: Jo-Philipp Wich Date: Sun, 5 Apr 2009 02:00:02 +0000 (+0000) Subject: build: force overwrite of already compressed files for gzip target X-Git-Tag: 0.9.0~535 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1c383dc244323f5c168ee16824cb5788fefc3667;p=oweals%2Fluci.git build: force overwrite of already compressed files for gzip target --- diff --git a/build/module.mk b/build/module.mk index 93f52689c..66b767c7a 100644 --- a/build/module.mk +++ b/build/module.mk @@ -38,7 +38,7 @@ luacompile: luasource for i in $$(find dist -name *.lua -not -name debug.lua); do $(LUAC) $(LUAC_OPTIONS) -o $$i $$i; done luagzip: luacompile - for i in $$(find dist -name *.lua -not -name debug.lua); do gzip -9 $$i; done + for i in $$(find dist -name *.lua -not -name debug.lua); do gzip -f9 $$i; done luaclean: rm -rf dist