From 36deb634cc659bfb1ea8a3568e807170529e886e Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 13 Jun 2014 19:32:34 +0200 Subject: [PATCH] INSTALL: Fix git archive on CentOS 6.5 --- INSTALL | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 8eecb4ea7..b948d6c88 100644 --- a/INSTALL +++ b/INSTALL @@ -90,11 +90,18 @@ disable the usage of "git describe". Use "git archive" to build the release tarball: -$ git archive --format=tgz --prefix=icinga2-/ tags/v +$ VERSION=2.0.0 +$ git archive --format=tgz --prefix=icinga2-$VERSION/ tags/v$VERSION + +On CentOS 6.x use + +$ VERSION=2.0.0 +$ git archive --format=tar --prefix=icinga2-$VERSION/ tags/v$VERSION | gzip >icinga2-$VERSION.tar.gz Finally you should verify that the tarball only contains the files it should contain: -$ tar ztf icinga2-.tar.gz | less +$ VERSION=2.0.0 +$ tar ztf icinga2-$VERSION.tar.gz | less ## Building Icinga 2 -- 2.40.0