From 610e4c89a7480877b81d1eba2aad06f9eb8e6840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Sun, 15 Feb 2015 21:47:40 +0100 Subject: [PATCH] Add comment: scons Paackage() bugs out if the VERSION does not end with a digit. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index b79ca22..1686d1c 100644 --- a/SConstruct +++ b/SConstruct @@ -153,7 +153,7 @@ for subdir in subdirs: env.SConscript(subdir + '/SConscript', variant_dir='#build/' + subdir, src_dir='#'+subdir, duplicate=0) 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, PACKAGETYPE = 'targz', LICENSE = 'BSD',