1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

build:dist: make use of file / distfile more obvious in handling of DIST_FILES in "make dist"

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Michael Adam 2012-09-12 23:45:50 +02:00 committed by Stefan Metzmacher
parent 3821defe2a
commit 36b2732426

View File

@ -175,11 +175,8 @@ def dist(appname='',version=''):
absfile = os.path.join(srcdir, file)
if destfile != file:
file = destfile
fname = dist_base + '/' + file
add_tarfile(tar, fname, absfile, file)
fname = dist_base + '/' + destfile
add_tarfile(tar, fname, absfile, destfile)
tar.close()