From: Nikola Pajkovsky Date: Wed, 4 Feb 2026 14:05:40 +0000 (+0100) Subject: config: use -path instead of -wholename X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aad0ceda38dbb3881599cd4666334b191388bdb8;p=thirdparty%2Fopenssl.git config: use -path instead of -wholename -wholename is mostly alias to -path, and -path is more portable. E.g. -wholename does not exist on NetBSD. Signed-off-by: Nikola Pajkovsky Reviewed-by: Shane Lontis Reviewed-by: Paul Dale Reviewed-by: Tim Hudson Reviewed-by: Tomas Mraz MergeDate: Mon Feb 9 09:53:10 2026 (Merged from https://github.com/openssl/openssl/pull/29944) --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 155aa46955a..bdcd87ac06e 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -639,7 +639,7 @@ clean: libclean ## Clean the workspace, keep the configuration $(RM) tags TAGS doc-nits md-nits $(RM) -r test/test-runs $(RM) providers/fips*.new - -find . -type l \! -name '.*' \! -wholename './pkcs11-provider/*' -exec $(RM) {} \; + -find . -type l \! -name '.*' \! -path './pkcs11-provider/*' -exec $(RM) {} \; distclean: clean ## Clean and remove the configuration $(RM) include/openssl/configuration.h