Code

Make sure that the htmlbase is up-to-date when we build a source dist.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 09:43:46 +0000 (09:43 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 09:43:46 +0000 (09:43 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@139 57a73879-2fb5-44c3-a270-3262357dd7e2

setup.py

index 4b3f9149cf7642c20894fccba3c882c1eae52d07..6893d17a15f9a94a4005a8d7fc6be71c215cfb59 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,19 @@
 #! /usr/bin/env python
-# $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $
+# $Id: setup.py,v 1.8 2001-07-29 09:43:46 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
 
 from glob import glob
 import os
+from roundup.templatebuilder import makeHtmlBase
 
 templates = 'classic', 'extended'
 packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
 installdatafiles = []
 
 for t in templates:
+    makeHtmlBase(os.path.join('roundup', 'templates', t))
     packagelist.append('roundup.templates.%s'%t)
     packagelist.append('roundup.templates.%s.detectors'%t)
     tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
@@ -30,6 +32,9 @@ setup ( name = "roundup",
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.7  2001/07/29 08:37:58  richard
+# changes
+#
 # Revision 1.6  2001/07/29 07:01:39  richard
 # Added vim command to all source so that we don't get no steenkin' tabs :)
 #