From 0df6b6c425b8f50e1e4bf13fd8fbdad7a2fca766 Mon Sep 17 00:00:00 2001 From: Jaco Kroon Date: Mon, 5 Aug 2024 16:50:01 +0200 Subject: [PATCH] configure: Use . file rather than source file. source is a bash concept, so when /bin/sh points to another shell the existing construct won't work. Reference: https://bugs.gentoo.org/927055 Signed-off-by: Jaco Kroon (cherry picked from commit 7fb7e2b9fdba26812f5909b6ac157344ce5b5aae) --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c498ca7a88..6ac918262d 100755 --- a/configure +++ b/configure @@ -16177,7 +16177,7 @@ else PBX_JANSSON=1 fi -source ./third-party/versions.mak +. ./third-party/versions.mak # Find required JWT support if bundled is not enabled. if test "$LIBJWT_BUNDLED" = "no" ; then diff --git a/configure.ac b/configure.ac index b1774e86ae..ec6f83e075 100644 --- a/configure.ac +++ b/configure.ac @@ -755,7 +755,7 @@ else PBX_JANSSON=1 fi -source ./third-party/versions.mak +. ./third-party/versions.mak # Find required JWT support if bundled is not enabled. if test "$LIBJWT_BUNDLED" = "no" ; then AST_PKG_CONFIG_CHECK([LIBJWT], [libjwt >= $LIBJWT_VERSION]) -- 2.47.2