Skip to content

Commit

Permalink
clearer output
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed Dec 30, 2009
1 parent d0526bc commit 9aec39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Expand Up @@ -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 = []
Expand Down

0 comments on commit 9aec39e

Please sign in to comment.