From 9c10aa93eca48c4157dbc21409e76f53fadf33eb Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Thu, 24 Nov 2016 17:47:25 +0100 Subject: [PATCH] build: Suggest to download supported tinycbor Note this patch is appropriate for release versions (or branches) while master or development branches can follow upstream's master branch and eventually synched when needed. Bug: https://jira.iotivity.org/browse/IOT-1600 Change-Id: I361a75fa9dd52739dce0daa8e14333c95e6c9284 Origin: https://gerrit.iotivity.org/gerrit/#/c/14763/ Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/14763 Tested-by: jenkins-iotivity (cherry picked from commit 16d6391f55577bae92cd458ef6a8dbafc57dc81b) Reviewed-on: https://gerrit.iotivity.org/gerrit/14805 Tested-by: jenkins-iotivity Reviewed-by: Dan Mihai Reviewed-by: Kevin Kane Reviewed-by: Hyuna Jo Reviewed-by: Mike Finch Reviewed-by: Mats Wichmann Reviewed-by: Dave Thaler Reviewed-by: Ziran Sun Reviewed-by: C.J. Collier --- extlibs/tinycbor/prep.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extlibs/tinycbor/prep.sh b/extlibs/tinycbor/prep.sh index b136253..dd533b1 100755 --- a/extlibs/tinycbor/prep.sh +++ b/extlibs/tinycbor/prep.sh @@ -5,13 +5,14 @@ set -e # Keep cborRevision in sync with extlibs/tinycbor/SConscript's setting. Right now this script # assumes cborRevision is a tag; comment out the second clause if cborRevision becomes # a branch or a specific commit. +cborUrl="https://github.com/01org/tinycbor" cborDir="./extlibs/tinycbor/tinycbor" cborRevision="v0.4" if [ ! -d ${cborDir} ]; then echo "" echo "*********************************** Error: ****************************************" echo "* Please download TinyCBOR using the following command: *" - echo "* $ git clone https://github.com/01org/tinycbor.git extlibs/tinycbor/tinycbor *" + echo "* $ git clone ${cborUrl} ${cborDir} -b ${cborRevision} " echo "***********************************************************************************" echo "" exit -- 2.7.4