diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-12-30 15:22:13 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-12-30 15:22:13 -0500 |
commit | 9aec39e1d57fc8b0d3c9f510ecc15cdcf39329ea (patch) | |
tree | eced62e1085144f06347f82516ae12354a34d46c /SConstruct | |
parent | d0526bc8e4edecbe8c18f9467d6c843262a73313 (diff) | |
download | mongo-9aec39e1d57fc8b0d3c9f510ecc15cdcf39329ea.tar.gz |
clearer output
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
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 = [] |