File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ Fix :file: `pcbuild.proj ` to clean previous instances of ouput files in ``Python\deepfreeze `` and
2
+ ``Python\frozen_modules `` directories on Windows. Patch by Charlie Zhao.
Original file line number Diff line number Diff line change 424
424
<Target Name =" _CleanFrozen" BeforeTargets =" CoreClean" Condition =" $(Configuration) != 'PGUpdate'" >
425
425
<ItemGroup >
426
426
<Clean Include =" %(None.IntFile)" />
427
+ <Clean Include =" %(None.OutFile)" />
428
+ <Clean Include =" %(GetPath.IntFile)" />
429
+ <Clean Include =" %(GetPath.OutFile)" />
430
+ <Clean Include =" $(PySourcePath)Python\deepfreeze\deepfreeze.c" />
427
431
</ItemGroup >
428
432
</Target >
429
433
</Project >
Original file line number Diff line number Diff line change 125
125
StopOnFirstFailure =" false"
126
126
Condition =" %(CleanTarget) != ''"
127
127
Targets =" %(CleanTarget)" />
128
+ <MSBuild Projects =" @(FreezeProjects)"
129
+ Properties =" Configuration=%(Configuration);Platform=%(Platform);%(Properties)"
130
+ BuildInParallel =" %(BuildInParallel)"
131
+ StopOnFirstFailure =" false"
132
+ Condition =" %(CleanTarget) != ''"
133
+ Targets =" %(CleanTarget)" />
128
134
</Target >
129
135
130
136
<Target Name =" CleanAll" >
140
146
StopOnFirstFailure =" false"
141
147
Condition =" %(CleanAllTarget) != ''"
142
148
Targets =" %(CleanAllTarget)" />
149
+ <MSBuild Projects =" @(FreezeProjects)"
150
+ Properties =" Configuration=%(Configuration);Platform=%(Platform);%(Properties)"
151
+ BuildInParallel =" %(BuildInParallel)"
152
+ StopOnFirstFailure =" false"
153
+ Condition =" %(CleanTarget) != ''"
154
+ Targets =" %(CleanTarget)" />
143
155
</Target >
144
156
145
157
<Target Name =" Rebuild" DependsOnTargets =" Clean;Build" />
You can’t perform that action at this time.
0 commit comments