Removed un-needed build script
authorGeorge Nash <george.nash@intel.com>
Thu, 14 Apr 2016 18:28:07 +0000 (11:28 -0700)
committerJon A. Cruz <jon@joncruz.org>
Fri, 15 Apr 2016 07:22:43 +0000 (07:22 +0000)
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 <george.nash@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/7787
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Jon A. Cruz <jon@joncruz.org>
resource/csdk/connectivity/SConscript

index 893dc5c..6ba8cd3 100644 (file)
@@ -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')