From 0f22ca91ec6f55f13a644ae97262ced1184fe6f9 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 20 Jan 2026 11:27:18 +0100 Subject: [PATCH] only try to install .lib for Windows if .dll exists --- App/tools/driver.makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index ddd5e8c..caf1618 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -983,7 +983,7 @@ ${MODULEDBD}: ${DBDFILES} # Install everything. INSTALL_LIBS = $(addprefix ${INSTALL_LIB}/,${MODULELIB} $(filter-out %.lib,$(call SONAME,${SHRLIBS_}))) ifeq (${OS_CLASS},WIN32) # WIN32 needs .lib for linking - INSTALL_LIBS += $(addprefix ${INSTALL_LIB}/,${LIB_PREFIX}${PRJ}${LIB_SUFFIX}) + INSTALL_LIBS += $(addprefix ${INSTALL_LIB}/,${MODULELIB:%${SHRLIB_SUFFIX}=%${LIB_SUFFIX}}) endif # Problem: sometimes arch dependent deps are (manually) required even if no code exists