From d2188398851034d39b2871bda6d37d0168b3e203 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 20 Oct 2006 12:53:14 +0000 Subject: [PATCH] seems to have a problem with long current directory paths now... so go to the root until i find out what's up here git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4780 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/src/SConscript b/Docs/src/SConscript index 556b304f..4ee66bd6 100644 --- a/Docs/src/SConscript +++ b/Docs/src/SConscript @@ -74,7 +74,7 @@ def fix_html(target, source, env): return None if build_chm: - hhc_action = Action(r'hhc "%s\nsis.hhp"' % (build_dir)) + hhc_action = Action(r'cd \ && hhc "%s\nsis.hhp"' % (build_dir)) execute = hhc_action.execute def rexecute(*args): return execute(*args) != 1 # hhc returns 1 on success