Changeset 1259 for trunk/SConstruct
- Timestamp:
- 09/11/06 15:10:05 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r1232 r1259 27 27 ("makedist", 28 28 "Make a binary archive giving a suffix, e.g. sarge or fc5", 29 "") 29 ""), 30 EnumOption("makedoc", "Build the userguide in specified format", 31 "none", 32 ["none", "pdf", "html"], ignorecase=1) 30 33 ) 31 34 … … 76 79 env = conf.Finish() 77 80 78 env["version"] = "2.1.0b 1"81 env["version"] = "2.1.0b2" 79 82 80 83 # general CPPFLAGS … … 149 152 env["stagedir"]) 150 153 env.AddPostAction(arch, Delete("$stagedir")) 154 if env["makedoc"].lower() != "none": 155 env.SConscript("doc/SConscript") 151 156 152 157 if env.GetOption("clean"):
Note:
See TracChangeset
for help on using the changeset viewer.