summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-12-30 15:22:13 -0500
committerEliot Horowitz <eliot@10gen.com>2009-12-30 15:22:13 -0500
commit9aec39e1d57fc8b0d3c9f510ecc15cdcf39329ea (patch)
treeeced62e1085144f06347f82516ae12354a34d46c /SConstruct
parentd0526bc8e4edecbe8c18f9467d6c843262a73313 (diff)
downloadmongo-9aec39e1d57fc8b0d3c9f510ecc15cdcf39329ea.tar.gz
clearer output
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 59742439714..d3aed528e0a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1351,7 +1351,7 @@ def checkGlibc(target,source,env):
stringProcess = subprocess.Popen( [ "strings" , str( target[0] ) ] , stdout=subprocess.PIPE )
stringResult = stringProcess.communicate()[0]
if stringResult.count( "GLIBC_2.4" ) > 0:
- print( str( target[0] ) + " has GLIBC_2.4 dependencies!" )
+ print( "************* " + str( target[0] ) + " has GLIBC_2.4 dependencies!" )
Exit(-3)
allBinaries = []