~ubuntu-branches/ubuntu/lucid/nsis/lucid

« back to all changes in this revision

Viewing changes to Contrib/VPatch/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2008-09-01 07:20:44 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080901072044-mjev9xfej6i2d63t
Tags: 2.37-3
Add nsDialogs stack corruption fix from nsis 2.38

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
target = 'VPatch'
2
 
 
3
 
examples = Split("""
4
 
        example.nsi
5
 
        newfile.txt
6
 
        oldfile.txt
7
 
        patch.pat
8
 
""")
9
 
 
10
 
docs = Split("""
11
 
        Readme.html
12
 
""")
13
 
 
14
 
includes = Split("""
15
 
        VPatchLib.nsh
16
 
""")
17
 
 
18
 
Import('defenv')
19
 
 
20
 
defenv.DistributeExamples(examples, path=target)
21
 
defenv.DistributeDocs(docs, path=target)
22
 
defenv.DistributeInclude(includes)
 
1
target = 'VPatch'
 
2
 
 
3
examples = Split("""
 
4
        example.nsi
 
5
        newfile.txt
 
6
        oldfile.txt
 
7
        patch.pat
 
8
""")
 
9
 
 
10
docs = Split("""
 
11
        Readme.html
 
12
""")
 
13
 
 
14
includes = Split("""
 
15
        VPatchLib.nsh
 
16
""")
 
17
 
 
18
Import('defenv')
 
19
 
 
20
defenv.DistributeExamples(examples, path=target)
 
21
defenv.DistributeDocs(docs, path=target)
 
22
defenv.DistributeInclude(includes)