diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-27 15:48:21 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-27 15:54:03 +0300 |
commit | dc7afa23bc4cb16a8f3730185af81a0a02642aac (patch) | |
tree | d24162f99d4214d33e7579221738cac08dce353b /libxslt/makefile.mk | |
parent | c6e86f8b7af28d990b9539903560554fc130775e (diff) |
Don't build libxslt.dll against debugging runtime for --enable-debug
Same problem as a few commits earlier: libxslt's configure.js uses
debug=yes to mean using the debugging crt, which we don't want in just
a debug=t build. (And which will make libxslt.dll fail to load.) Look
at $(dbgutil), not $(debug). (And note that in general dbgutil builds
are disabled for Windows currently anyway.)
Diffstat (limited to 'libxslt/makefile.mk')
-rw-r--r-- | libxslt/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxslt/makefile.mk b/libxslt/makefile.mk index 9d77bba77ed7..fe808ddadba4 100644 --- a/libxslt/makefile.mk +++ b/libxslt/makefile.mk @@ -93,7 +93,7 @@ BUILD_DIR=$(CONFIGURE_DIR) CONFIGURE_DIR=win32 CONFIGURE_ACTION=cscript configure.js #CONFIGURE_FLAGS=iconv=no sax1=yes -.IF "$(debug)"!="" +.IF "$(dbgutil)"!="" CONFIGURE_FLAGS+=debug=yes .ENDIF BUILD_ACTION=nmake |