4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-16 12:26:06 +00:00

Don't import LDFLAGS from the environment

This commit is contained in:
Neil Alexander
2023-10-28 18:21:26 +01:00
parent a6b316ef08
commit 7f9d4f3f6d
2 changed files with 10 additions and 10 deletions

2
build
View File

@ -6,7 +6,7 @@ PKGSRC=${PKGSRC:-github.com/yggdrasil-network/yggdrasil-go/src/version}
PKGNAME=${PKGNAME:-$(sh contrib/semver/name.sh)}
PKGVER=${PKGVER:-$(sh contrib/semver/version.sh --bare)}
LDFLAGS="${LDFLAGS} -X $PKGSRC.buildName=$PKGNAME -X $PKGSRC.buildVersion=$PKGVER"
LDFLAGS="-X $PKGSRC.buildName=$PKGNAME -X $PKGSRC.buildVersion=$PKGVER"
ARGS="-v"
while getopts "utc:l:dro:p" option