Skip to content

Commit

Permalink
Bug 1780056 - Fix python black lint failure. CLOSED TREE
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandor Molnar committed Aug 29, 2022
1 parent 9c668d2 commit 1bc3803
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build/moz.configure/toolchain.configure
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ with only_when(target_is_osx):
env="MACOSX_DEPLOYMENT_TARGET",
nargs=1,
default=depends(target, developer_options)
# We continue to target 10.12 on Intel, but can target 11.0 for
# aarch64 since the earliest hardware was released alongside 11.0.
# For local builds, we want to target 10.12 regardless of the
# underlying platform to catch any errors or warnings that wouldn't
# show up when targeting 11.0, since these would later show up on
# CI for Intel builds.
(lambda t, d: "11.0" if (t.cpu == "aarch64" and not d) else "10.12"),
# We continue to target 10.12 on Intel, but can target 11.0 for
# aarch64 since the earliest hardware was released alongside 11.0.
# For local builds, we want to target 10.12 regardless of the
# underlying platform to catch any errors or warnings that wouldn't
# show up when targeting 11.0, since these would later show up on
# CI for Intel builds.
(lambda t, d: "11.0" if (t.cpu == "aarch64" and not d) else "10.12"),
help="Set the minimum MacOS version needed at runtime{|}",
)

Expand Down

0 comments on commit 1bc3803

Please sign in to comment.