From abab97ce3392f989a47104ad3c8d1dee3da7228e Mon Sep 17 00:00:00 2001 From: Adam Simpkins Date: Mon, 26 Aug 2019 11:45:01 -0700 Subject: [PATCH] fbcode_builder: update the old fbcode_builder spec for fbzmq Summary: The external Travis CI builds for fbzmq are still using the older fbcode_builder spec (as opposed to the newer getdeps manifest file). D16577367 moved the CMakeLists.txt file to the top-level directory, but the fbzmq spec file was still looking for it in the fbzmq subdirectory. Reviewed By: jstrizich Differential Revision: D17005361 fbshipit-source-id: 3f7664eadfb60ec7606124a14445b44ae586b8a7 --- build/fbcode_builder/specs/fbzmq.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/fbcode_builder/specs/fbzmq.py b/build/fbcode_builder/specs/fbzmq.py index 286d9a2e0..f579b25b3 100644 --- a/build/fbcode_builder/specs/fbzmq.py +++ b/build/fbcode_builder/specs/fbzmq.py @@ -26,9 +26,9 @@ def fbcode_builder_spec(builder): builder.make_and_install(), ]), - builder.fb_github_project_workdir('fbzmq/fbzmq/build', 'facebook'), - builder.step('Build and install fbzmq/fbzmq/build', [ - builder.cmake_configure('fbzmq/fbzmq/build'), + builder.fb_github_project_workdir('fbzmq/_build', 'facebook'), + builder.step('Build and install fbzmq/', [ + builder.cmake_configure('fbzmq/_build'), # we need the pythonpath to find the thrift compiler builder.run(ShellQuoted( 'PYTHONPATH="$PYTHONPATH:"{p}/lib/python2.7/site-packages '