Do not set ARCH if it was already set by other build scripts.
Ref pandora_enterprise#5731
This commit is contained in:
parent
60f4f21297
commit
f061813769
|
@ -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/
|
||||
|
||||
|
|
Loading…
Reference in New Issue