diff options
| author | Vincent Richard <[email protected]> | 2004-12-08 20:20:54 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-12-08 20:20:54 +0100 |
| commit | 9bbc42c78317be9a7a50ebe7ef12291e0dbca1bc (patch) | |
| tree | 2f286b57a95d1a0b263b4636104a4a67c834b9a0 /SConstruct | |
| parent | All header tests-functions added (diff) | |
| download | vmime-9bbc42c78317be9a7a50ebe7ef12291e0dbca1bc.tar.gz vmime-9bbc42c78317be9a7a50ebe7ef12291e0dbca1bc.zip | |
Changed 'uname -o' to 'uname -s' for POSIX compatibility.
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -519,7 +519,7 @@ config_hpp.write('// Target OS and architecture\n') if os.name == 'posix': config_hpp.write('#define VMIME_TARGET_ARCH "' + commands.getoutput('uname -m') + '"\n') - config_hpp.write('#define VMIME_TARGET_OS "' + commands.getoutput('uname -o') + '"\n') + config_hpp.write('#define VMIME_TARGET_OS "' + commands.getoutput('uname -s') + '"\n') else: config_hpp.write('#define VMIME_TARGET_ARCH "" // Unknown\n') config_hpp.write('#define VMIME_TARGET_OS "' + sys.platform + '/' + os.name + '"\n') |
