fix windows build's packaging of web templates

the recent changes to webish's template lookup (to use nevow.util hence
pkg_resources) to support the mac build, needs these changes to the windows
build in match the new lookup path
This commit is contained in:
robk-tahoe 2008-01-23 18:23:37 -07:00
parent 214411a10f
commit 869cf44f68
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ OutputBaseFilename=Allmydata_Tahoe_Setup_v%(major)d_%(minor)d_%(point)d_%(nano)d
[Files]
; contents of 'binaries' dir. (consolidated build target)
Source: "*.*"; DestDir: "{app}\Install"; Flags: restartreplace replacesameversion uninsrestartdelete
Source: ".\web\*.*"; DestDir: "{app}\Install\web"; Flags: recursesubdirs
Source: ".\pkg_resources\*.*"; DestDir: "{app}\Install\pkg_resources"; Flags: recursesubdirs
Source: ".\winfuse\*.*"; DestDir: "{app}\Install\winfuse"; Flags: recursesubdirs
[Dirs]

View File

@ -58,7 +58,7 @@ setup_args = {
'data_files': [
('.', [
],),
('web', glob.glob('../src/allmydata/web/*')),
('pkg_resources/allmydata/web', glob.glob('../src/allmydata/web/*')),
('winfuse', glob.glob('./winfuse/*')),
],
'zipfile' : 'library.zip',