X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=extlibs%2Fboost%2FSConscript;h=729fbfc561b0c70c68601a3f11ab7965f87d35af;hb=refs%2Ftags%2Faccepted%2Ftizen%2Funified%2F20230214.171546;hp=cae1be1a0f549c68b4ee5eb089ba3535d54ad31a;hpb=a5b4fe80c18329aa044fc1678d44ba76a45aea5b;p=platform%2Fupstream%2Fiotivity.git diff --git a/extlibs/boost/SConscript b/extlibs/boost/SConscript index cae1be1..729fbfc 100644 --- a/extlibs/boost/SConscript +++ b/extlibs/boost/SConscript @@ -26,7 +26,7 @@ boost_bootstrap = os.path.join(boost_dir,'bootstrap.bat') if 'linux' == target_os : # Check for Boost libraries in /usr/boost - print 'TODO: Perform platform check for linux' + print('TODO: Perform platform check for linux') raise SCons.Errors.EnvironmentError('Unsupported platform') elif target_os in ['windows']: @@ -38,11 +38,11 @@ elif target_os in ['windows']: if os.path.exists(boost_zip_file): boost_zip = boost_zip_file else: - print '*** Downloading Boost zip file (> 100MB). Please wait... ***' + print('*** Downloading Boost zip file (> 100MB). Please wait... ***') boost_zip = env.Download(boost_zip_file, boost_url) # Unzip boost - print '*** Unpacking boost %s zip file ... ***' % boost_version + print('*** Unpacking boost %s zip file ... ***' % boost_version) env.UnpackAll(boost_dir, boost_zip) # Rename from boost_1_60_0 -> boost @@ -50,7 +50,7 @@ elif target_os in ['windows']: # Sanity check, in case the above method didn't work if not os.path.exists(boost_bootstrap): - print ''' + print(''' *********************************** Error: **************************************** * Please download boost from the following website: * @@ -65,7 +65,7 @@ elif target_os in ['windows']: * ''' + boost_bootstrap + ''' * *********************************************************************************** -''' +''') Exit(1) elif target_os in ['android']: