summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-02-10 14:51:32 +0100
committerÉtienne Loks <etienne.loks@proxience.com>2015-02-10 14:51:32 +0100
commit526705c6197fd5bf8e278a11c6d98732f78ec4a4 (patch)
treebf2b5c3ae9486aa963a7b5b08c8126ad753cb626 /Makefile.example
parent9500c7893f4e99a1753704b985df426db7c1f55c (diff)
downloadIshtar-526705c6197fd5bf8e278a11c6d98732f78ec4a4.tar.bz2
Ishtar-526705c6197fd5bf8e278a11c6d98732f78ec4a4.zip
Fix Makefile: when used replace django-admin by manage.py
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example
index da9882e67..b7b1cee8c 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -76,5 +76,5 @@ run:
compilemessages:
for DIR in $(apps); do \
cd $(CURDIR)/$$DIR; \
- django-admin compilemessages; \
+ $(PYTHON) ../$(project)/manage.py compilemessages; \
done