From 5c252a7914378dbd535d2d098a3af1474bbc55fb Mon Sep 17 00:00:00 2001 From: John Starks Date: Sat, 23 Apr 2016 15:11:08 -0700 Subject: [PATCH] Windows: Add file version information This change adds file version information to docker.exe and dockerd.exe by adding a Windows version resource with the windres tool. This change adds a dependency to binutils-mingw-w64 on Linux, but removes a dependency on rsrc. Most Windows build environments should already have windres if they have gcc (which is necessary to build dockerd). Signed-off-by: John Starks --- docker_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_windows.go b/docker_windows.go index a31dffc95c..de32257586 100644 --- a/docker_windows.go +++ b/docker_windows.go @@ -1,5 +1,5 @@ package main import ( - _ "github.com/docker/docker/autogen/winresources" + _ "github.com/docker/docker/autogen/winresources/docker" )