aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/osmo-build-dep.sh
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-30 02:45:41 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-30 02:45:41 +0100
commitc4ce20a93e3b21cf033e813501f44414253a17cc (patch)
tree062c12a865cbee78bf0ab1471a91c3f0df57b14c /scripts/osmo-build-dep.sh
parent6fbe3aa929a097edc4c5f58fdb7c11a894c80127 (diff)
cosmetic: osmo-build-dep.sh: print example on error
I've been asked at least twice what the contents of the expected env vars should be, so log an example on error. Change-Id: I635752e6033c57bfce90d8b0732bc402bf3014c8
Diffstat (limited to 'scripts/osmo-build-dep.sh')
-rwxr-xr-xscripts/osmo-build-dep.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/scripts/osmo-build-dep.sh b/scripts/osmo-build-dep.sh
index 001df85..2a107ed 100755
--- a/scripts/osmo-build-dep.sh
+++ b/scripts/osmo-build-dep.sh
@@ -7,25 +7,33 @@ cfg="$3"
set -e
set +x
+example="
+Example:
+ export deps=\$PWD/deps inst=\$PWD/inst
+ mkdir -p \$deps
+ mkdir -p \$inst
+ MAKE=make PARALLEL_MAKE=-j8 osmo-build-dep.sh libosmocore
+"
+
echo
echo
echo
echo " =============================== $project ==============================="
echo
if [ -z "$project" ]; then
- echo "internal failure: \$project is empty"
+ echo "internal failure: \$project is empty$example"
exit 1
fi
if [ -z "$deps" ]; then
- echo "internal failure: \$deps is empty"
+ echo "internal failure: \$deps is empty$example"
exit 1
fi
if [ -z "$inst" ]; then
- echo "internal failure: \$inst is empty"
+ echo "internal failure: \$inst is empty$example"
exit 1
fi
if [ -z "$MAKE" ]; then
- echo "internal failure: \$MAKE is empty"
+ echo "internal failure: \$MAKE is empty$example"
exit 1
fi
set -x