From: Michael Adam Date: Wed, 12 Sep 2012 15:04:50 +0000 (+0200) Subject: build:dist: for snapshot builds, call DIST_DIRS with extend=True X-Git-Tag: samba-4.0.0rc1~6 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=3821defe2a76663ddef59e9591dffa42a08764bf build:dist: for snapshot builds, call DIST_DIRS with extend=True to allow the distversion file to be an addition to the list Signed-off-by: Stefan Metzmacher --- diff --git a/wscript b/wscript index 64aaaf2fd0b..1e762986d7f 100755 --- a/wscript +++ b/wscript @@ -246,7 +246,7 @@ def dist(): distveroption = field + '=' + str(sambaversion.vcs_fields[field]) distversionf.write(distveroption + '\n') distversionf.flush() - samba_dist.DIST_FILES('%s:.distversion' % distversionf.name) + samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True) samba_dist.dist() distversionf.close()