Kaydet (Commit) 53a5bf75 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix the MSVC build with --without-help

It tried to build helppack installer(s) anyway as it looked for "HELP"
in BUILD_TYPE and was fooled by the "DBGHELP".

Change-Id: I9a271a464a776f4f4dad8ea1bef662966b88f944
üst 7af975da
......@@ -68,7 +68,10 @@ LOCALPYFILES= \
$(BIN)$/pythonloader.py
.ENDIF
.IF "$(BUILD_TYPE)"=="$(BUILD_TYPE:s/HELP//)"
# We can be pretty sure that the "HELP" in BUILD_TYPE, if it is there,
# is surrounded by spaces. We can't look for just "HELP" here because
# then DBGHELP would match...
.IF "$(BUILD_TYPE)"=="$(BUILD_TYPE:s/ HELP //)"
OOOHELPPACK=
OOODEVHELPPACK=
.ELSE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment