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:
authorViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-15 16:50:10 +0300
committerViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-15 16:50:10 +0300
commitb127fe1eb11b4ad55c46ee2b39cfa797d7d55380 (patch)
tree809fb85496b749f48eaf7b39b570e916a33e820f /build-backend.xml
parenta4ee472ccf017529863e7a0c9f513f7623675f66 (diff)
.......... [DEV-812] fixed coding style
Diffstat (limited to 'build-backend.xml')
-rw-r--r--build-backend.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-backend.xml b/build-backend.xml
index 47eb3034fe1..324143e4b1f 100644
--- a/build-backend.xml
+++ b/build-backend.xml
@@ -36,7 +36,7 @@
<!-- Cppcheck static analyzer target -->
<target name="cppcheck-static-analyzer">
- <exec executable="./bootstrap.sh" failonerror="on"></exec>
+ <exec executable="./bootstrap.sh" failonerror="on"/>
<exec executable="scan-build" failonerror="on">
<arg line="./configure"/>
<arg line="--enable-server --enable-agent --enable-proxy --with-mysql --with-jabber --with-libxml2 --with-unixodbc --with-net-snmp --with-ssh2 --with-libevent --with-ldap --with-libcurl"/>
@@ -60,7 +60,7 @@
<!-- Clang Static Analyzer target with various configuration parameters -->
<target name="clang-static-analyzer" depends="init-conf-options">
<delete dir="clang-scan-build-reports"/>
- <exec executable="./bootstrap.sh" failonerror="on"></exec>
+ <exec executable="./bootstrap.sh" failonerror="on"/>
<propertyselector property="conf.list" delimiter="," match="conf(\d+)"/>
<sortlist property="conf.list" delimiter="," value="${conf.list}" override="true"/>
<for list="${conf.list}" param="name" delimiter=",">
@@ -94,8 +94,8 @@
<target name="init">
<!-- Create database schema -->
- <exec executable="./bootstrap.sh" failonerror="on"></exec>
- <exec executable="./configure" failonerror="on"></exec>
+ <exec executable="./bootstrap.sh" failonerror="on"/>
+ <exec executable="./configure" failonerror="on"/>
<exec executable="make" failonerror="on">
<arg line="-s"/>
<arg line="-j5"/>
@@ -302,7 +302,7 @@
<!-- Build Zabbix with cmocka tests -->
<delete dir="tests_results"/>
<mkdir dir="tests_results"/>
- <exec executable="./bootstrap.sh" failonerror="on"></exec>
+ <exec executable="./bootstrap.sh" failonerror="on"/>
<propertyselector property="conf.list" delimiter="," match="cmocka-(.*)" select="\1"/>
<sortlist property="conf.list" delimiter="," value="${conf.list}" override="true"/>
<for list="${conf.list}" param="name" delimiter=",">