Add comment: scons Paackage() bugs out if the VERSION does

not end with a digit.
This commit is contained in:
Nils O. Selåsdal
2015-02-15 21:47:40 +01:00
parent 61cec258e3
commit 610e4c89a7
+1 -1
View File
@@ -153,7 +153,7 @@ for subdir in subdirs:
env.SConscript(subdir + '/SConscript', variant_dir='#build/' + subdir, src_dir='#'+subdir, duplicate=0) env.SConscript(subdir + '/SConscript', variant_dir='#build/' + subdir, src_dir='#'+subdir, duplicate=0)
env.Package(NAME = 'libucore', env.Package(NAME = 'libucore',
VERSION = version_info['version_str'] + '.0', VERSION = version_info['version_str'] + '.0', #Trailing .0 is needed cause a SCons bug
PACKAGEVERSION = 0, PACKAGEVERSION = 0,
PACKAGETYPE = 'targz', PACKAGETYPE = 'targz',
LICENSE = 'BSD', LICENSE = 'BSD',