Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2020-10-24 22:24:07 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2020-10-24 22:24:23 +0300
commitcbd3cfe2cea25865b489a8c79bcf55b847dfcf5e (patch)
tree2886144b478d39ac29ba2fdcb3b73e3c000a0a77 /build-backend.xml
parent36454613ca7b39331a397f4fdcb150a340330245 (diff)
.......... [ZBXNEXT-686] monor improvements in backend-build script
(cherry picked from commit e6cf784cdb58f2b877dc290eb5fe0671723887f6)
Diffstat (limited to 'build-backend.xml')
-rw-r--r--build-backend.xml13
1 files changed, 8 insertions, 5 deletions
diff --git a/build-backend.xml b/build-backend.xml
index 1f1406b5065..0a00515e469 100644
--- a/build-backend.xml
+++ b/build-backend.xml
@@ -315,7 +315,9 @@
<target name="make-dist">
<!-- Create & build Zabbix distribution -->
<exec executable="./bootstrap.sh" failonerror="on"/>
- <exec executable="./configure" failonerror="on"/>
+ <exec executable="./configure" failonerror="on">
+ <arg line="--quiet"/>
+ </exec>
<exec executable="make" failonerror="on">
<arg line="-s"/>
<arg line="-j5"/>
@@ -327,12 +329,13 @@
<arg line="dist"/>
</exec>
<apply executable="tar">
- <arg line="-zxf"/>
+ <arg line="xzf"/>
<fileset dir="." includes="zabbix-*.tar.gz"/>
</apply>
- <dirset dir="." includes="zabbix-*" id="dist.dir"/>
- <property name="prop.dist.dir" refid="dist.dir"/>
- <ant antfile="../build-backend.xml" dir="${prop.dist.dir}" target="build-dist" inheritAll="true" inheritRefs="true"/>
+ <move tofile="sources">
+ <dirset dir="." includes="zabbix-*"/>
+ </move>
+ <ant antfile="../build-backend.xml" dir="sources" target="build-dist" inheritAll="true" inheritRefs="true"/>
</target>
<target name="build" depends="make-dist"/>