From 3384f56cce7b220a179e0f43b4e0ec100df66ccc Mon Sep 17 00:00:00 2001 From: Yinghai Lu Date: Thu, 15 Feb 2018 11:29:19 -0800 Subject: [PATCH] Fix setup.py Summary: There is a typo in the setup.py which will cause incomplete install. This fixes it. Closes https://github.com/caffe2/caffe2/pull/1968 Reviewed By: bddppq Differential Revision: D7000517 Pulled By: yinghai fbshipit-source-id: c89e32bc5a4a77571f6ab6569297a6b6a1d1f2fc --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f7b03eddc2c..00ca46aa8ec 100644 --- a/setup.py +++ b/setup.py @@ -130,7 +130,7 @@ class cmake_build(Caffe2Command): '-DPYTHON_EXECUTABLE:FILEPATH={}'.format(sys.executable), '-DPYTHON_INCLUDE_DIR={}'.format(sysconfig.get_python_inc()), '-DBUILD_TEST=OFF', - '-BUILD_BENCHMARK=OFF', + '-DBUILD_BENCHMARK=OFF', '-DBUILD_BINARY=OFF', ] if 'CMAKE_ARGS' in os.environ: