[bridgedb/master] Add translation catalog compilation commands to install Makefile directives.

commit ed52bc50241eb3e37572062fd06270e1a8baf4d2 Author: Isis Lovecruft <isis@torproject.org> Date: Mon Oct 14 06:41:45 2013 +0000 Add translation catalog compilation commands to install Makefile directives. * CHANGE Makefile directives 'install' and 'force-install' to recompile the completed translations before actually installing the package. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e0ff669..b932701 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,11 @@ test: python setup.py test install: + -python setup.py compile_catalog 2>&1 >/dev/null python setup.py install --record installed-files.txt force-install: + -python setup.py compile_catalog 2>&1 >/dev/null python setup.py install --force --record installed-files.txt 2>&1 >/dev/null uninstall:
participants (1)
-
isis@torproject.org