aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-02-03 19:37:59 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-02-03 19:37:59 +0000
commit6060578121f4eb30818df26124e4bee4d5188102 (patch)
treeb2f64335e4fda93dca5de5fa781992298bff4eeb /config.nmake
parent07ab8a268b008b41966b7f5c82bcbfb76b3d4a21 (diff)
... no it won't, that's why I removed them ...
Put the quotes around the places where HHC_DIR is used, that should work. svn path=/trunk/; revision=20699
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.nmake b/config.nmake
index f51288e111..2ad420a7e6 100644
--- a/config.nmake
+++ b/config.nmake
@@ -389,7 +389,7 @@ MAKENSIS="$(PROGRAM_FILES)\nsis\makensis.exe"
# If you don't want the online help (or don't have the tools),
# comment this line out, so that HHC_DIR isn't defined.
#
-HHC_DIR="$(PROGRAM_FILES)/HTML Help Workshop"
+HHC_DIR=$(PROGRAM_FILES)/HTML Help Workshop
##### Flags, PATHs and Miscellaneous #####
@@ -415,7 +415,7 @@ LOCAL_CFLAGS=/Zi /W3 /MD /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
# /DEFAULTLIB:xxx use xxx as the standard C library
# /NODEFAULTLIB:xxx don't use xxx as the standard C library
#
-LOCAL_LDFLAGS=/DEBUG
+LOCAL_LDFLAGS=/DEBUG
PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
@@ -794,8 +794,8 @@ PORTAUDIO_CONFIG=
!IFDEF HHC_DIR
!IF "$(MSVC_VARIANT)" == "MSVC6"
-HHC_CFLAGS=/I$(HHC_DIR)\include -DHHC_DIR
-HHC_LIBS=$(HHC_DIR)\lib\htmlhelp.lib
+HHC_CFLAGS=/I"$(HHC_DIR)\include" -DHHC_DIR
+HHC_LIBS="$(HHC_DIR)\lib\htmlhelp.lib"
!ELSE
HHC_CFLAGS=-DHHC_DIR
HHC_LIBS=htmlhelp.lib