summaryrefslogtreecommitdiff
path: root/third-party
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2018-03-09 13:26:40 +0100
committerAlexander Traud <pabstraud@compuserve.com>2018-03-17 14:14:29 +0100
commitf697025ae5b9f4b04f2e38cda766e4d5e0058baf (patch)
tree9f03225e560cc1b3d7286b0bcf9dab2cddbba6e2 /third-party
parentd5bfba60d2c609852da2f89677e878567d133674 (diff)
BuildSystem: When no download utility is available, display the explanation.
./configure --with-pjproject-bundled did not display an explanation, when no download utility like wget, curl, or fetch was installed beforehand, although an explanation existed in code. This happened because the code expected the variable DOWNLOAD_TO_STDOUT to be empty. However, the script ./configure set that variable always. Change-Id: I64c99b76a03525c69471e5055bf124b36a51bbd4
Diffstat (limited to 'third-party')
-rw-r--r--third-party/pjproject/configure.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/pjproject/configure.m4 b/third-party/pjproject/configure.m4
index c1edaf9aa..42482b2e5 100644
--- a/third-party/pjproject/configure.m4
+++ b/third-party/pjproject/configure.m4
@@ -16,7 +16,7 @@ AC_DEFUN([_PJPROJECT_CONFIGURE],
AC_MSG_RESULT(configuring)
if test "x${DOWNLOAD_TO_STDOUT}" = "x" ; then
- AC_MSG_ERROR(A download utility (wget, curl or fetch) is required to download bundled pjproject)
+ AC_MSG_ERROR(A download utility (wget, curl, or fetch) is required to download bundled pjproject)
fi
if test "${BZIP2}" = ":" ; then
AC_MSG_ERROR(bzip2 is required to extract the pjproject tar file)