mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8845eb4345
There is no need in those flags now when we use amalgamated sqlite3 from mattn/go-sqlite3. Signed-off-by: Alexander Morozov <lk4d4@docker.com>
21 lines
697 B
Bash
21 lines
697 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$DOCKER_CLIENTONLY" ]; then
|
|
source "${MAKEDIR}/.dockerinit-gccgo"
|
|
|
|
hash_files "$DEST/dockerinit-$VERSION"
|
|
else
|
|
# DOCKER_CLIENTONLY must be truthy, so we don't need to bother with dockerinit :)
|
|
export DOCKER_INITSHA1=""
|
|
fi
|
|
# DOCKER_INITSHA1 is exported so that other bundlescripts can easily access it later without recalculating it
|
|
|
|
(
|
|
export IAMSTATIC="false"
|
|
export EXTLDFLAGS_STATIC=''
|
|
export LDFLAGS_STATIC_DOCKER=''
|
|
export BUILDFLAGS=( "${BUILDFLAGS[@]/netgo /}" ) # disable netgo, since we don't need it for a dynamic binary
|
|
export BUILDFLAGS=( "${BUILDFLAGS[@]/static_build /}" ) # we're not building a "static" binary here
|
|
source "${MAKEDIR}/gccgo"
|
|
)
|