Do not set ARCH if it was already set by other build scripts.

Ref pandora_enterprise#5731
This commit is contained in:
Ramon Novoa 2020-04-22 11:20:38 +02:00
parent 60f4f21297
commit f061813769
1 changed files with 7 additions and 2 deletions

View File

@ -3,13 +3,18 @@
# The installer will be placed in ./installer/output/.
# InstallJammer must be installed and in the PATH.
ARCH=`uname -m`
# ARCH may be set by other build scripts.
if [ "$ARCH" == "" ]; then
ARCH=`uname -m`
fi
# Set the target host.
if [ "$ARCH" == "x86_64" ]; then
HOST="x86_64-w64-mingw32"
else
HOST="i686-w64-mingw32"
fi
#./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/ && installjammer --build installer/pandora.mpi
# Compile and update the Pandora FMS Agent binary.
./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/