Skip to content

Commit 6632aea

Browse files
author
Richard Jones
committed
Make sure that the htmlbase is up-to-date when we build a source dist.
1 parent 6620042 commit 6632aea

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
#! /usr/bin/env python
2-
# $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $
2+
# $Id: setup.py,v 1.8 2001-07-29 09:43:46 richard Exp $
33

44
from distutils.core import setup, Extension
55
from distutils.util import get_platform
66

77
from glob import glob
88
import os
9+
from roundup.templatebuilder import makeHtmlBase
910

1011
templates = 'classic', 'extended'
1112
packagelist = [ 'roundup', 'roundup.backends', 'roundup.templates' ]
1213
installdatafiles = []
1314

1415
for t in templates:
16+
makeHtmlBase(os.path.join('roundup', 'templates', t))
1517
packagelist.append('roundup.templates.%s'%t)
1618
packagelist.append('roundup.templates.%s.detectors'%t)
1719
tfiles = glob(os.path.join('roundup','templates', t, 'html', '*'))
@@ -30,6 +32,9 @@
3032

3133
#
3234
# $Log: not supported by cvs2svn $
35+
# Revision 1.7 2001/07/29 08:37:58 richard
36+
# changes
37+
#
3338
# Revision 1.6 2001/07/29 07:01:39 richard
3439
# Added vim command to all source so that we don't get no steenkin' tabs :)
3540
#

0 commit comments

Comments
 (0)