Browse Source

Merge pull request #19181 from coolljt0725/enable_build_syscall_test

Make .ensure-syscall-test to use build-arg
Tianon Gravi 9 years ago
parent
commit
335764a591
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hack/make/.ensure-syscall-test

+ 1 - 1
hack/make/.ensure-syscall-test

@@ -4,5 +4,5 @@ set -e
 # Build a C binary for cloning a userns for seccomp tests
 # Build a C binary for cloning a userns for seccomp tests
 # and compile it for target daemon
 # and compile it for target daemon
 if [ "$DOCKER_ENGINE_GOOS" = "linux" ]; then
 if [ "$DOCKER_ENGINE_GOOS" = "linux" ]; then
-	docker build -qt syscall-test contrib/syscall-test > /dev/null
+	docker build ${DOCKER_BUILD_ARGS} -qt syscall-test contrib/syscall-test > /dev/null
 fi
 fi