From 40df6d73cedc5d79d3484cc959c023cd9f956125 Mon Sep 17 00:00:00 2001 From: George Nash Date: Thu, 14 Apr 2016 11:28:07 -0700 Subject: [PATCH] Removed un-needed build script In resource/csdk/connectivity/ the SConscript tries to build sample code that does not exist. Since the samples do not exist the build warns that the samples SConscript can not be found. Change-Id: I96cc0b2c8a53f9431a7188089075d8f85e75cbe5 Signed-off-by: George Nash Reviewed-on: https://gerrit.iotivity.org/gerrit/7787 Tested-by: jenkins-iotivity Reviewed-by: Jon A. Cruz --- resource/csdk/connectivity/SConscript | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/resource/csdk/connectivity/SConscript b/resource/csdk/connectivity/SConscript index 893dc5c..6ba8cd3 100644 --- a/resource/csdk/connectivity/SConscript +++ b/resource/csdk/connectivity/SConscript @@ -82,19 +82,3 @@ else: env.AppendUnique(CPPDEFINES = ['NO_NFC_ADAPTER']) env.SConscript('./src/SConscript') - -if build_sample == 'ON': - if target_os in ['linux', 'arduino', 'darwin']: - target_path = target_os - - if target_os == 'darwin': - target_path = 'linux' - env.SConscript('./samples/' + target_path + '/SConscript') - - elif target_os in ['android']: - env.SConscript('./samples/' + target_os + '/SConscript') - - #to build sample apk, uncomment below line after ca libraries are built - #while building ca libraries comment the below line, to avoid build errors - - #env.SConscript('./samples/' + target_os + '/casample/SConscript') -- 2.7.4