From: Ryan Keane Date: Sat, 20 Dec 2025 10:30:00 +0000 (-0800) Subject: fix: Fix uninstall_dev failing to remove empty dir X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da5d7f9073e5edc5f7c7dc27721bd9f890910098;p=thirdparty%2Fopenssl.git fix: Fix uninstall_dev failing to remove empty dir Fix this error: ``` rmdir "$PREFIX/lib64/cmake/OpenSSL" rmdir "$PREFIX/lib64" rmdir: failed to remove '$PREFIX/lib64': Directory not empty ``` Because `rmdir $PREFIX/lib64/cmake` is missing CLA: trivial Signed-off-by: Ryan Keane Reviewed-by: Norbert Pocs Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell MergeDate: Mon Jan 19 11:58:05 2026 (Merged from https://github.com/openssl/openssl/pull/29472) --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 3d8df76989b..155aa46955a 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -879,6 +879,7 @@ uninstall_dev: uninstall_runtime_libs done -$(RMDIR) "$(DESTDIR)$(PKGCONFIGDIR)" -$(RMDIR) "$(DESTDIR)$(CMAKECONFIGDIR)" + -$(RMDIR) "$(DESTDIR)$(libdir)/cmake" -$(RMDIR) "$(DESTDIR)$(libdir)" _install_modules_deps: install_runtime_libs build_modules