summaryrefslogtreecommitdiff
path: root/sounds
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 /sounds
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 'sounds')
-rw-r--r--sounds/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sounds/Makefile b/sounds/Makefile
index 779d52a8e..606bbdcec 100644
--- a/sounds/Makefile
+++ b/sounds/Makefile
@@ -127,9 +127,9 @@ have_download:
@if test "$(DOWNLOAD)" = ":" ; then \
echo "**************************************************"; \
echo "*** ***"; \
- echo "*** You must have either wget or fetch to be ***"; \
- echo "*** able to automatically download and install ***"; \
- echo "*** the requested sound packages. ***"; \
+ echo "*** You must have either wget, curl, or fetch ***"; \
+ echo "*** to be able to automatically download and ***"; \
+ echo "*** install the requested sound packages. ***"; \
echo "*** ***"; \
echo "*** Please install one of these, or remove any ***"; \
echo "*** extra sound package selections in ***"; \