aboutsummaryrefslogtreecommitdiff
path: root/packages.gradle
diff options
context:
space:
mode:
authorOlaf Flebbe <o.flebbe@science-computing.de>2014-11-20 16:02:36 +0100
committerKonstantin Boudnik <cos@apache.org>2014-11-20 13:51:18 -0800
commita2d38959fd41e510fdf5eacd8affc880c750e281 (patch)
treecfb07929a04081679862b1aa5f06e6cc17119371 /packages.gradle
parent0b31139959b1eeeea000c2bcc51b612a6b59e6ab (diff)
BIGTOP-1542. Debian Package zookeeper does not build because tar.xz is missing
Signed-off-by: Konstantin Boudnik <cos@apache.org>
Diffstat (limited to 'packages.gradle')
-rw-r--r--packages.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.gradle b/packages.gradle
index 636d5d47..2abbb5d8 100644
--- a/packages.gradle
+++ b/packages.gradle
@@ -258,7 +258,7 @@ def genTasks = { target, variable ->
commandLine "dpkg-buildpackage -uc -us -sa -S".split(' ')
}
mkdir(PKG_OUTPUT_DIR)
- fileTree (dir: "$DEB_PKG_DIR/..", includes: ['*.dsc', '*.diff.gz', '*.debian.tar.gz', "*_source.changes", "*.orig.tar.gz"]).copy {
+ fileTree (dir: "$DEB_PKG_DIR/..", includes: ['*.dsc', '*.diff.gz', '*.debian.tar.gz', '*.debian.tar.xz', "*_source.changes", "*.orig.tar.gz" ]).copy {
into PKG_OUTPUT_DIR
}
touchTargetFile(BOM_map[variable + '_TARGET_SDEB'])