diff --git a/build/fbcode_builder/getdeps.py b/build/fbcode_builder/getdeps.py index 890d0e74d..014105f3b 100755 --- a/build/fbcode_builder/getdeps.py +++ b/build/fbcode_builder/getdeps.py @@ -810,12 +810,6 @@ class BuildCmd(ProjectCmdBase): ), action="append", ) - parser.add_argument( - "--shared-libs", - help="Build shared libraries if possible", - action="store_true", - default=False, - ) parser.add_argument( "--free-up-disk", help="Remove unused tools and clean up intermediate files if possible to maximise space for the build", @@ -1326,6 +1320,12 @@ def parse_args(): action="store_false", dest="facebook_internal", ) + add_common_arg( + "--shared-libs", + help="Build shared libraries if possible", + action="store_true", + default=False, + ) add_common_arg( "--allow-system-packages", help="Allow satisfying third party deps from installed system packages",