Changing representation, so there's no space between the words.

This commit is contained in:
Nathan Letwory 2010-08-29 21:49:50 +00:00
parent 37b54281b2
commit c29b5df739

@ -289,7 +289,7 @@ def buildinfo(lenv, build_type):
'BUILD_TYPE=\'"%s"\''%(build_type), 'BUILD_TYPE=\'"%s"\''%(build_type),
'BUILD_REV=\'"%s"\''%(build_rev), 'BUILD_REV=\'"%s"\''%(build_rev),
'NAN_BUILDINFO', 'NAN_BUILDINFO',
'BUILD_PLATFORM=\'"%s %s"\''%(platform.system(), platform.architecture()[0])]) 'BUILD_PLATFORM=\'"%s:%s"\''%(platform.system(), platform.architecture()[0])])
obj = [lenv.Object (root_build_dir+'source/creator/%s_buildinfo'%build_type, obj = [lenv.Object (root_build_dir+'source/creator/%s_buildinfo'%build_type,
[root_build_dir+'source/creator/buildinfo.c'])] [root_build_dir+'source/creator/buildinfo.c'])]
return obj return obj