We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256648c commit f925c71Copy full SHA for f925c71
AutoDuck/make.py
@@ -6,9 +6,8 @@
6
if __name__ == "__main__":
7
# *sob* - we should kill .chm file support!
8
# "hhc" is the "html help compiler" - part of some obscure SDK.
9
- hhc = os.environ.get("HHC")
10
- if not hhc:
11
- hhc = os.path.expandvars(r"%ProgramFiles(x86)%\HTML Help Workshop\hhc.exe")
+ if not os.environ.get("HHC"):
+ os.environ["HHC"] = os.path.expandvars(r'"%ProgramFiles(x86)%\HTML Help Workshop\hhc.exe"')
12
13
# find nmake
14
nmake = subprocess.check_output(
0 commit comments