From 69573f29d29f70939f65cb1acc323c50812e5843 Mon Sep 17 00:00:00 2001 From: "Zeyi (Rice) Fan" Date: Wed, 19 May 2021 10:04:44 -0700 Subject: [PATCH] windows: fix Windows build for py3 build Summary: I forget to add fbclone build rule for the Python 3 build and that's blocking Mercurial release. This diff fixes that. (Note: this ignores all push blocking failures!) Reviewed By: DurhamG Differential Revision: D28541340 fbshipit-source-id: 2c12583b97ccd18e3a4717b63a4680e8a5c3de46 --- eden/scm/setup3.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eden/scm/setup3.py b/eden/scm/setup3.py index 8f60225ad8..20469dba07 100644 --- a/eden/scm/setup3.py +++ b/eden/scm/setup3.py @@ -1768,6 +1768,9 @@ rustextbinaries = [ RustBinary("scm_daemon", manifest="exec/scm_daemon/Cargo.toml"), ] +if havefb and iswindows: + rustextbinaries += [RustBinary("fbclone", manifest="fb/fbclone/Cargo.toml")] + setup( name="edenscm",