diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-15 19:17:15 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-04-15 19:18:02 +0200 |
commit | faaccdc2698bec097445e9482f5e4b7188ebaf81 (patch) | |
tree | ea76cd14933682111748c4c86dca469a4f98c0ed /RepositoryFixes.mk | |
parent | 40dbe0ffbbffcedcd820cb4ccd856a524a55d833 (diff) |
RepositoryFixes: add missing check for MSVC_USE_DEBUG_RUNTIME
(regression from 4811c2dc9f94929b60e7e2e0077871aad14fdc3a)
Change-Id: Ide12da645332e789fe7742c34b5af219b94316ab
Diffstat (limited to 'RepositoryFixes.mk')
-rw-r--r-- | RepositoryFixes.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk index 24289481ca00..a6b9367c1aee 100644 --- a/RepositoryFixes.mk +++ b/RepositoryFixes.mk @@ -136,7 +136,7 @@ gb_Library_FILENAMES := \ ,$(gb_Library_FILENAMES)) gb_Library_FILENAMES += \ $(foreach lib,$(gb_Library_NOILIBFILENAMES),$(lib):$(lib)$(gb_Library_PLAINEXT)) \ - $(foreach lib,$(gb_Library_NOILIBFILENAMES_D),$(lib):$(lib)d$(gb_Library_PLAINEXT)) \ + $(foreach lib,$(gb_Library_NOILIBFILENAMES_D),$(lib):$(lib)$(if $(MSVC_USE_DEBUG_RUNTIME),d)$(gb_Library_PLAINEXT)) \ $(foreach lib,$(gb_Library_LIBLIBFILENAMES),$(lib):lib$(lib)$(gb_Library_PLAINEXT)) endif # ifeq ($(COM),GCC) |