mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Merge pull request #286 from mcbridematt/t4831-telegraf-arm64
telegraf: T4831: fix build on arm64 / remove hardcoded amd64 reference
This commit is contained in:
commit
fddf616cdf
@ -2,6 +2,8 @@
|
||||
CWD=$(pwd)
|
||||
set -e
|
||||
|
||||
BUILD_ARCH=$(dpkg-architecture -qDEB_TARGET_ARCH)
|
||||
|
||||
SRC=telegraf
|
||||
if [ ! -d ${SRC} ]; then
|
||||
echo "Source directory does not exists, please 'git clone'"
|
||||
@ -16,7 +18,7 @@ cp ${PLUGIN_DIR}/inputs/all/all.go ${SRC}/plugins/inputs/all/all.go
|
||||
echo "I: Selecting Output plugins"
|
||||
cp ${PLUGIN_DIR}/outputs/all/all.go ${SRC}/plugins/outputs/all/all.go
|
||||
|
||||
echo "I: Build Debian amd64 package"
|
||||
echo "I: Build Debian ${BUILD_ARCH} package"
|
||||
cd ${SRC}
|
||||
export PATH=/opt/go/bin:$PATH
|
||||
LDFLAGS=-w make amd64.deb
|
||||
LDFLAGS=-w make "${BUILD_ARCH}.deb"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user