From 9149570cc21277487fec2e376bae88634f24a760 Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Mon, 18 Jul 2016 16:51:09 -0700 Subject: [PATCH] build: Suggest to download supported tinycbor Note this patch is appropriate for frozen versions while master or development branches can follow tinycbor master and eventually synched when needed. Change-Id: Ic764a3aa7231982d24fcdd17d661425500000000 Bug: https://lists.iotivity.org/pipermail/iotivity-dev/2016-November/006160.html Origin: https://gerrit.iotivity.org/gerrit/9565 Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/14659 Tested-by: jenkins-iotivity Reviewed-by: Habib Virji Reviewed-by: Gregg Reynolds Reviewed-by: Nivedita Singhvi Reviewed-by: Thiago Macieira (cherry picked from commit 10c287fa62763927619d5fb0a20c8a43f2e41e62) Reviewed-on: https://gerrit.iotivity.org/gerrit/15355 Tested-by: jenkins-iotivity Reviewed-by: George Nash Reviewed-by: Dave Thaler Reviewed-by: Mats Wichmann Reviewed-by: Dan Mihai --- extlibs/tinycbor/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extlibs/tinycbor/SConscript b/extlibs/tinycbor/SConscript index 3be061e..092a46b 100644 --- a/extlibs/tinycbor/SConscript +++ b/extlibs/tinycbor/SConscript @@ -33,9 +33,9 @@ if not os.path.exists(cborDir): print ''' *********************************** Error: **************************************** * Please download cbor using the following command: * -* $ git clone https://github.com/01org/tinycbor.git extlibs/tinycbor/tinycbor * +* $ git clone https://github.com/01org/tinycbor.git extlibs/tinycbor/tinycbor -b %s * *********************************************************************************** -''' +''' % cborRevision Exit(1) start_dir = os.getcwd() -- 2.7.4