From c4cb759eb63245a9c923315cd8e633c7df1a9bec Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 23 Nov 2018 16:58:54 +0100 Subject: [PATCH] Fix glog compilation on Windows - sometime MAKEFLAGS can contains some value which will break the build... --- makefiles/Makefile.third_party.win.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/makefiles/Makefile.third_party.win.mk b/makefiles/Makefile.third_party.win.mk index 77de36c056..c89404d0a7 100644 --- a/makefiles/Makefile.third_party.win.mk +++ b/makefiles/Makefile.third_party.win.mk @@ -260,6 +260,7 @@ install_glog: dependencies/install/lib/glog.lib dependencies/install/lib/glog.lib: dependencies/sources/glog-$(GLOG_TAG) install_gflags cd dependencies\sources\glog-$(GLOG_TAG) && \ + set MAKEFLAGS= && \ "$(CMAKE)" -H. -Bbuild_cmake \ -DCMAKE_PREFIX_PATH=..\..\install \ -DCMAKE_BUILD_TYPE=Release \