| # | Line 8 | Line 8 | _platdir = 'platform' | |
|---|---|---|
| 8 | ||
| 9 | ||
| 10 | def read_plat(env, args, fn): | |
| 11 | < | cfig = ConfigParser.ConfigParser(env.Dictionary()) |
| 11 | > | envdict = env.Dictionary().copy() |
| 12 | > | # can't feed ConfigParser the original dict, because it also |
| 13 | > | # contains non-string values. |
| 14 | > | for k,v in envdict.items(): |
| 15 | > | if not isinstance(v, str): |
| 16 | > | del envdict[k] |
| 17 | > | cfig = ConfigParser.ConfigParser(envdict) |
| 18 | cfig.read(fn) | |
| 19 | buildvars = [['CC', | |
| 20 | 'TIFFINCLUDE', # where to find preinstalled tifflib headers | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |