diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0ad0d9b4..2b14aef6 100644 --- a/configure.ac +++ b/configure.ac @@ -318,6 +318,9 @@ then # source: http://blog.leosoto.com/2008/04/django-secretkey-generation.html AC_SUBST(SECRET_KEY, `$PYTHON -c 'import random; print "".join([random.choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])'`) + # there is no standard name for this tool, so check for it + AC_PATH_PROGS(DJANGO_ADMIN, [django-admin django-admin.py]) + AC_CONFIG_FILES([portal-gui/Makefile]) fi |