From 06e74eba1cc2a89bf8d718aa3827b8aad87f4cb0 Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Wed, 1 Feb 2017 17:11:31 -0300 Subject: [PATCH] Updated makefile for linux-386 --- src/go/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/Makefile b/src/go/Makefile index b2186248..8812bfac 100644 --- a/src/go/Makefile +++ b/src/go/Makefile @@ -21,7 +21,7 @@ linux-386: @echo "Building linux/386 binaries in ${BIN_DIR}" @$(foreach pkg,$(pkgs),rm -f ${BIN_DIR}/$(pkg) 2> /dev/null;) @$(foreach pkg,$(pkgs),cd ${SRC_DIR}/${pkg} && govendor sync;) - @$(foreach pkg,$(pkgs),govendor sync && GOOS=linux GOARCH=386 go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/$(pkg) ./$(pkg);) + @$(foreach pkg,$(pkgs),GOOS=linux GOARCH=386 go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/$(pkg) ./$(pkg);) darwin-amd64: @echo "Building darwin/amd64 binaries in ${BIN_DIR}"