only fix htmls when not on win32
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4487 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
0913023f33
commit
c1a81d0dd2
1 changed files with 6 additions and 3 deletions
|
@ -109,8 +109,11 @@ else:
|
|||
env.Append(BUILDERS = {'Halibut' : html_builder, 'FixHTML': html_fixer})
|
||||
|
||||
html = env.Halibut(htmls, [config_but] + buts)
|
||||
fixed_html = env.FixHTML(fixed_htmls, htmls)
|
||||
env.Depends(html, halibut)
|
||||
env.Depends(fixed_html, html)
|
||||
env.DistributeDocs('#Docs/style.css')
|
||||
env.DistributeDocs(fixed_html)
|
||||
|
||||
if env['PLATFORM'] == 'win32':
|
||||
env.DistributeDocs(html)
|
||||
else:
|
||||
fixed_html = env.FixHTML(fixed_htmls, htmls)
|
||||
env.DistributeDocs(fixed_html)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue