From 65f821524d18cb56f195b2b2e2aedc8928199f7f Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Wed, 8 Mar 2017 11:40:38 +0100 Subject: [PATCH] mbedtls: remove Tizen specific case Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: I74ab383626672ec37287514b37826b23135b2f64 Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/17857 Tested-by: jenkins-iotivity Reviewed-by: Mats Wichmann Reviewed-by: Ashok Babu Channa --- extlibs/mbedtls/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extlibs/mbedtls/SConscript b/extlibs/mbedtls/SConscript index cc58b24..e53a78b 100644 --- a/extlibs/mbedtls/SConscript +++ b/extlibs/mbedtls/SConscript @@ -49,7 +49,7 @@ os.chdir(mbedtls_dir) # the mbedtls_revision tag selected is the same as in extlibs/mbedtls/prep.sh. # This code also assumes mbedtls_revision is a tag; if it changes to # a branch or an arbitrary commit, disable this check below. -if target_os != 'tizen': +if os.path.exists('.git/HEAD'): out = subprocess.check_output('git tag -l ' + mbedtls_revision, shell = True) if mbedtls_revision not in out: print out -- 2.7.4