From: Jaco Kroon Date: Mon, 5 Aug 2024 14:50:01 +0000 (+0200) Subject: configure: Use . file rather than source file. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b45c04a7c41998f1c789163d6dae405074107c30;p=thirdparty%2Fasterisk.git 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 --- diff --git a/configure b/configure index c27c64ea81..5b30ffe7dd 100755 --- a/configure +++ b/configure @@ -15774,7 +15774,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 b179171587..ada1395016 100644 --- a/configure.ac +++ b/configure.ac @@ -746,7 +746,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])