aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2026-05-22 19:55:22 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2026-05-22 19:55:22 +0000
commitcd69bc03cf67b958e08206d49562903c57b5bd28 (patch)
tree4df543183ec59c8f89c50000cf582ec057cfcd87
parentdd64155367840a3747d812577457a7ed7c8e9acb (diff)
unbound: Tweak freebsd-configure script
Regenerating the configure script is optional and can introduce noise if the installed versions of autoconf, automake, and libtool do not match those used upstream. Tweak our script slightly so it will skip this step if libtoolize is not found.
-rwxr-xr-xcontrib/unbound/freebsd-configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/unbound/freebsd-configure.sh b/contrib/unbound/freebsd-configure.sh
index cd45d4716320..a22428948574 100755
--- a/contrib/unbound/freebsd-configure.sh
+++ b/contrib/unbound/freebsd-configure.sh
@@ -14,7 +14,7 @@ unbound=$(dirname $(realpath $0))
cd $unbound
# Run autotools before we drop LOCALBASE out of PATH
-(cd $unbound && libtoolize --copy && autoheader && autoconf)
+libtoolize --copy && autoheader && autoconf
# Ensure we use the correct toolchain and clean our environment
export CC=$(echo ".include <bsd.lib.mk>" | make -f /dev/stdin -VCC)