소스 검색

Merge pull request #40526 from thaJeztah/bump_container_utility

Update windows container utility to fix compilation on gcc-mingw-w64 8.3
Brian Goff 5 년 전
부모
커밋
68ba988124
1개의 변경된 파일1개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 8
      hack/make/containerutility

+ 1 - 8
hack/make/containerutility

@@ -1,20 +1,13 @@
 #!/usr/bin/env bash
 #!/usr/bin/env bash
 set -e
 set -e
 
 
-CONTAINER_UTILITY_COMMIT=e004a1415a433447369e315b9d7df357102be0d2 # v0.9.0
+: "${CONTAINER_UTILITY_COMMIT:=aa1ba87e99b68e0113bd27ec26c60b88f9d4ccd9}"
 
 
 (
 (
 	git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
 	git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
 	cd "$GOPATH/src/github.com/docker/windows-container-utility"
 	cd "$GOPATH/src/github.com/docker/windows-container-utility"
 	git checkout -q "$CONTAINER_UTILITY_COMMIT"
 	git checkout -q "$CONTAINER_UTILITY_COMMIT"
 
 
-	# TODO remove this temporary fix once https://github.com/docker/windows-container-utility/pull/2 is merged
-	sed -i \
-		-e 's|-nostdinc ||g' \
-		-e 's|-I/usr/lib/gcc/x86_64-w64-mingw32/6.3-win32/include ||g' \
-		-e 's|-I/usr/x86_64-w64-mingw32/include ||g' \
-		"$GOPATH/src/github.com/docker/windows-container-utility/Makefile"
-
 	echo Building: ${DEST}/containerutility.exe
 	echo Building: ${DEST}/containerutility.exe
 
 
 	(
 	(