Tweak hack/make/*-{client,daemon} to be consistent

Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
This commit is contained in:
Tianon Gravi 2016-04-25 10:40:07 -07:00
parent e974eadd94
commit 626d25a7d9
4 changed files with 17 additions and 15 deletions

View File

@ -1,7 +1,8 @@
#!/bin/bash #!/bin/bash
set -e set -e
BINARY_SHORT_NAME="docker" (
SOURCE_PATH="./client" export BINARY_SHORT_NAME='docker'
export SOURCE_PATH='./client'
source "${MAKEDIR}/.binary" source "${MAKEDIR}/.binary"
)

View File

@ -1,8 +1,9 @@
#!/bin/bash #!/bin/bash
set -e set -e
BINARY_SHORT_NAME="dockerd" (
SOURCE_PATH="./docker" export BINARY_SHORT_NAME='dockerd'
export SOURCE_PATH='./docker'
source "${MAKEDIR}/.binary" source "${MAKEDIR}/.binary"
copy_containerd "$DEST" "hash" copy_containerd "$DEST" 'hash'
)

View File

@ -2,9 +2,9 @@
set -e set -e
( (
export BINARY_SHORT_NAME="docker" export BINARY_SHORT_NAME='docker'
export SOURCE_PATH="./client" export SOURCE_PATH='./client'
export IAMSTATIC="false" export IAMSTATIC='false'
export LDFLAGS_STATIC_DOCKER='' export LDFLAGS_STATIC_DOCKER=''
export BUILDFLAGS=( "${BUILDFLAGS[@]/netgo /}" ) # disable netgo, since we don't need it for a dynamic binary 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 export BUILDFLAGS=( "${BUILDFLAGS[@]/static_build /}" ) # we're not building a "static" binary here

View File

@ -2,9 +2,9 @@
set -e set -e
( (
export BINARY_SHORT_NAME="dockerd" export BINARY_SHORT_NAME='dockerd'
export SOURCE_PATH="./docker" export SOURCE_PATH='./docker'
export IAMSTATIC="false" export IAMSTATIC='false'
export LDFLAGS_STATIC_DOCKER='' export LDFLAGS_STATIC_DOCKER=''
export BUILDFLAGS=( "${BUILDFLAGS[@]/netgo /}" ) # disable netgo, since we don't need it for a dynamic binary 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 export BUILDFLAGS=( "${BUILDFLAGS[@]/static_build /}" ) # we're not building a "static" binary here