Cross-platform "mktemp" in hyperkube makefile.

Before this change, make failed on OSX.
This commit is contained in:
Igor Katson 2016-11-11 19:12:58 -08:00
parent 702c33a564
commit 5758039059

View File

@ -19,7 +19,7 @@
REGISTRY?=gcr.io/google_containers
ARCH?=amd64
TEMP_DIR:=$(shell mktemp -d)
TEMP_DIR:=$(shell mktemp -d -t hyperkubeXXXXXX)
CNI_RELEASE=07a8a28637e97b22eb8dfe710eeae1344f69d16e
UNAME_S:=$(shell uname -s)