diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-06-21 00:06:27 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-06-28 09:35:12 +0000 |
commit | 7f4a622f9fbf27774efa908348e682df7280713b (patch) | |
tree | c735f1768d0b7868ad7fcc43c8b5be517648b771 /external | |
parent | 62d5b496b87b3beb6273da9643a1883fcd8afece (diff) |
stop copying MSVC debug runtime DLLs
This is apparently not necessary with MSVC 2012; builds and all tests
run here without those DLLs in the solver.
Change-Id: If352fb3702d7dae57deb19959eab8eb0fedea318
Reviewed-on: https://gerrit.libreoffice.org/4414
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'external')
-rw-r--r-- | external/Module_external.mk | 1 | ||||
-rw-r--r-- | external/Package_msvc_dlls_debug.mk | 16 |
2 files changed, 0 insertions, 17 deletions
diff --git a/external/Module_external.mk b/external/Module_external.mk index 8cda13e6658a..907b23b6ca28 100644 --- a/external/Module_external.mk +++ b/external/Module_external.mk @@ -26,7 +26,6 @@ $(eval $(call gb_Module_add_targets,external,\ Package_dbghelp \ $(if $(MSM_PATH),Package_msms) \ Package_msvc_dlls \ - $(if $(MSVC_USE_DEBUG_RUNTIME),Package_msvc_dlls_debug) \ $(if $(filter YES,$(WITH_MOZAB4WIN)),Package_msvc80_dlls) \ )) endif diff --git a/external/Package_msvc_dlls_debug.mk b/external/Package_msvc_dlls_debug.mk deleted file mode 100644 index 3e847645fbb4..000000000000 --- a/external/Package_msvc_dlls_debug.mk +++ /dev/null @@ -1,16 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -$(eval $(call gb_Package_Package,msvc_dlls,$(MSVC_DEBUG_DLL_PATH))) - -$(eval $(call gb_Package_add_files,msvc_dlls,bin,\ - $(MSVC_DEBUG_DLLS) \ -)) - -# vim:set shiftwidth=4 tabstop=4 noexpandtab: |