When trying to build the tool using make build command, following error is observed.
go build ./build_helper
go: build output "build_helper" already exists and is a directory
make: *** [Makefile:57: cleanup_frontend] Error 1
The above error is due to trying to build a binary with existing folder name in root Makefile, the fix for the same is attached as patch file.
build_fix.patch
What is the OS?
What is the OS version?
What is the tools version? Commit?
d5c20b6151b99610b836ab6dff2a60eef3b42241
Issue description
When trying to build the tool using
make build
command, following error is observed.The above error is due to trying to build a binary with existing folder name in root
Makefile
, the fix for the same is attached as patch file. build_fix.patch