summaryrefslogtreecommitdiff
path: root/demoscript/Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r--demoscript/Util.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py
index 1e0d8c07490..0bd75b2a057 100644
--- a/demoscript/Util.py
+++ b/demoscript/Util.py
@@ -94,8 +94,6 @@ def configurePaths():
compiler = ""
if os.environ.get("CPP_COMPILER", "") != "":
compiler = os.environ["CPP_COMPILER"]
- if compiler == "BCC2010":
- binDir = binDir + "\\bcc10;" + binDir
if compiler == "VC100" or compiler == "VC100_EXPRESS":
binDir = os.path.join(binDir, "vc100")
@@ -248,7 +246,7 @@ def isNoServices():
config = open(os.path.join(toplevel, "config", "Make.rules.mak"), "r")
if config != None:
compiler = re.search("CPP_COMPILER[\t\s]*= ([A-Z0-9]*)", config.read()).group(1)
- return compiler == "BCC2010" or compiler == "VC60"
+ return compiler == "VC60"
def getMapping():
"""Determine the current mapping based on the cwd."""