From ab0b64b43aa745f1f607bedb2388b14a132c0888 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Kubo Date: Sun, 4 Apr 2021 02:42:21 +0900 Subject: [PATCH] scons: print sentence is not available in python3. --- examples/SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/SConstruct b/examples/SConstruct index 06fef59..c0c720e 100644 --- a/examples/SConstruct +++ b/examples/SConstruct @@ -15,13 +15,13 @@ if os.sys.platform != "win32": conf = Configure(env); if not conf.CheckCXX(): - print "The C++ compiler is not installed!" + print("The C++ compiler is not installed!") Exit(1) libs = ['stdc++'] for lib in libs: if not conf.CheckLib(lib): - print "library " + lib + " not installed!" + print("library " + lib + " not installed!") Exit(1) conf.Finish()