summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index 833ffcef7..3209b7989 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -503,7 +503,7 @@ class BuildAction( Action, list ):
if self.match( '*mingw*' ):
self.systemf = 'MinGW'
elif self.systemf:
- self.systemf[0] = self.systemf[0].upper()
+ self.systemf = self.systemf.capitalize()
self.title = '%s %s' % (build.systemf,self.machine)
else:
self.title = '%s %s' % (build.systemf,arch.mode.mode)