From 7fc884e5e996fe0211b043fda0b2191f0de0a831 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 7 Aug 2022 21:10:12 +0000 Subject: [PATCH] Fix uninstalling DLLs on Windows FossilOrigin-Name: 0f0c69e4203935267d3d130dfcb6ba3491b684dbc2d2e88f15b662f8f23a0a26 --- buildsys.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildsys.mk.in b/buildsys.mk.in index 539ec45..a3b2fa4 100644 --- a/buildsys.mk.in +++ b/buildsys.mk.in @@ -773,7 +773,7 @@ uninstall: uninstall-extra for i in "" ${SHARED_LIB}; do \ test x"$$i" = x"" && continue; \ - if test -f ${DESTDIR}${libdir}/$$i; then \ + if test -f ${DESTDIR}${libdir}/$$i -o -f ${DESTDIR}${bindir}/$$i; then \ if : @UNINSTALL_LIB@; then \ ${DELETE_OK}; \ else \