]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
configure: Use . file rather than source file.
authorJaco Kroon <jaco@uls.co.za>
Mon, 5 Aug 2024 14:50:01 +0000 (16:50 +0200)
committerJaco Kroon <jaco@uls.co.za>
Thu, 8 Aug 2024 14:19:27 +0000 (14:19 +0000)
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 <jaco@uls.co.za>
configure
configure.ac

index c27c64ea817b166af7b4e7c8e2d068a3c9a14484..5b30ffe7dd3a9e2f36887663f8818789438e2909 100755 (executable)
--- 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
 
index b179171587888b4ba42e60bc8c236c8df933ee28..ada1395016fb81d9d5091e43d2dd92253a571317 100644 (file)
@@ -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])