gpsd-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gpsd-dev] [PATCH] SConstruct: make spaces around ellipses consistent


From: Paul Fertser
Subject: [gpsd-dev] [PATCH] SConstruct: make spaces around ellipses consistent
Date: Mon, 28 Mar 2016 14:07:38 +0300

Upstream SCons tests have no space before the ellipses and a space
after, bring gpsd tests in line with that for the visual consistency.

Signed-off-by: Paul Fertser <address@hidden>
---
 SConstruct | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/SConstruct b/SConstruct
index 4877bbf..67e1e9b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -438,7 +438,7 @@ def CheckXsltproc(context):
 
 
 def CheckCompilerOption(context, option):
-    context.Message('Checking if compiler accepts %s ...' % (option,))
+    context.Message('Checking if compiler accepts %s... ' % (option,))
     old_CFLAGS = context.env['CFLAGS']
     context.env.Append(CFLAGS=option)
     ret = context.TryLink("""
@@ -453,7 +453,7 @@ def CheckCompilerOption(context, option):
 
 
 def CheckHeaderDefines(context, file, define):
-    context.Message('Checking if %s supplies %s ...' % (file, define))
+    context.Message('Checking if %s supplies %s... ' % (file, define))
     ret = context.TryLink("""
         #include <%s>
         #ifndef %s
@@ -468,7 +468,7 @@ def CheckHeaderDefines(context, file, define):
 
 
 def CheckCompilerDefines(context, define):
-    context.Message('Checking if compiler supplies %s ...' % (define,))
+    context.Message('Checking if compiler supplies %s... ' % (define,))
     ret = context.TryLink("""
         #ifndef %s
         #error %s is not defined
@@ -484,7 +484,7 @@ def CheckCompilerDefines(context, define):
 
 
 def CheckC11(context):
-    context.Message('Checking if compiler is C11 ...')
+    context.Message('Checking if compiler is C11... ')
     ret = context.TryLink("""
         #if (__STDC_VERSION__ < 201112L)
         #error Not C11
@@ -498,7 +498,7 @@ def CheckC11(context):
 
 
 def GetLoadPath(context):
-    context.Message("Getting system load path ...")
+    context.Message("Getting system load path... ")
 
 
 cleaning = env.GetOption('clean')
-- 
2.6.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]