Fix trivial gtest info error
authorMats Wichmann <mats@linux.com>
Tue, 29 Aug 2017 13:47:21 +0000 (07:47 -0600)
committerPhil Coval <philippe.coval@osg.samsung.com>
Wed, 30 Aug 2017 10:35:59 +0000 (10:35 +0000)
Missing % sign to interpolate GTEST_VERSION into output message

Change-Id: I159e7cb43afe7614ac85fb99686920f075b79d6a
Signed-off-by: Mats Wichmann <mats@linux.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/22227
Tested-by: jenkins-iotivity <jenkins@iotivity.org>
Reviewed-by: George Nash <george.nash@intel.com>
Reviewed-by: Phil Coval <philippe.coval@osg.samsung.com>
extlibs/gtest/SConscript

index a677033..b30e0c4 100644 (file)
@@ -42,7 +42,7 @@ if gtest_env.GetOption('clean'):
         Execute(clean)
     Return("gtest_env")
 
-print '*** Checking for installation of google unit test %s ***', GTEST_VERSION
+print '*** Checking for installation of google unit test %s ***' % GTEST_VERSION
 if not os.path.exists(gtest_unpacked_sentinel):
     # If the gtest zip file is not already present, download it
     if not os.path.exists(gtest_zip_path):