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
commit2d77a0b7965724c6804fab14006115fb3b7d08c1 (patch)
treebf2b5c3ae9486aa963a7b5b08c8126ad753cb626 /Makefile.example
parent27d1867fd0bae39438bd9bb3d5e1a22dc26efbe6 (diff)
downloadIshtar-2d77a0b7965724c6804fab14006115fb3b7d08c1.tar.bz2
Ishtar-2d77a0b7965724c6804fab14006115fb3b7d08c1.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