diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-03-19 18:25:04 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-03-19 18:25:04 +0000 |
commit | c6e2ec467a7d2918a313aa97b33e61411d34a2b2 (patch) | |
tree | e42de973e2b9a87efec2b4634f6e426d5ae131ec | |
parent | aa924816b6c468790dc236d5a5f7f74c01e99d9d (diff) |
$DJANGO_DIR is no longer needed and not used anywhere
svn path=/trunk/; revision=5175
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | rpkid/Makefile.in | 1 |
3 files changed, 0 insertions, 7 deletions
@@ -604,7 +604,6 @@ LIBOBJS WSGI_PROCESS_GROUP WSGI_DAEMON_PROCESS DJANGO_ADMIN -DJANGO_DIR SECRET_KEY VIRTUAL_ENV OPENSSL_SO_GLOB @@ -4906,9 +4905,6 @@ $as_echo "no" >&6; } SECRET_KEY=`$PYTHON -c 'import random; print "".join(random.choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50))'` - DJANGO_DIR=`$PYTHON -c 'import os,sys; print [os.path.join(p, "django") for p in sys.path if os.path.exists(os.path.join(p, "django"))][0]'` - - # There is no standard name for this tool, so check for it. for ac_prog in django-admin django-admin.py do diff --git a/configure.ac b/configure.ac index 40d788c7..617ccc75 100644 --- a/configure.ac +++ b/configure.ac @@ -719,8 +719,6 @@ 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)])'`) - AC_SUBST(DJANGO_DIR, [`$PYTHON -c 'import os,sys; print [[os.path.join(p, "django") for p in sys.path if os.path.exists(os.path.join(p, "django"))]][[0]]'`]) - # There is no standard name for this tool, so check for it. AC_PATH_PROGS(DJANGO_ADMIN, [django-admin django-admin.py]) diff --git a/rpkid/Makefile.in b/rpkid/Makefile.in index 02713929..26801ae7 100644 --- a/rpkid/Makefile.in +++ b/rpkid/Makefile.in @@ -6,7 +6,6 @@ PYTHON = @PYTHON@ TRANG = @TRANG@ SECRET_KEY = @SECRET_KEY@ -DJANGO_DIR = @DJANGO_DIR@ VIRTUAL_ENV = @VIRTUAL_ENV@ DJANGO_ADMIN = @DJANGO_ADMIN@ |