Skip to content

Commit

Permalink
Flip --incompatible_objc_framework_cleanup flag to true
Browse files Browse the repository at this point in the history
RELNOTES[INC]: cleanup that affects user provided apple frameworks is
now enabled by default.  See
bazelbuild#7944 for more info.

PiperOrigin-RevId: 250743310
  • Loading branch information
Googler authored and irengrig committed Jun 18, 2019
1 parent 7b4c301 commit 17cdf39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -572,7 +572,7 @@ public class StarlarkSemanticsOptions extends OptionsBase implements Serializabl

@Option(
name = "incompatible_objc_framework_cleanup",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
metadataTags = {
Expand Down
Expand Up @@ -251,7 +251,7 @@ public static Builder builderWithDefaults() {
.incompatibleNoSupportToolsInActionInputs(false)
.incompatibleNoTargetOutputGroup(false)
.incompatibleNoTransitiveLoads(true)
.incompatibleObjcFrameworkCleanup(false)
.incompatibleObjcFrameworkCleanup(true)
.incompatibleRemapMainRepo(false)
.incompatibleRemoveNativeMavenJar(false)
.incompatibleRestrictNamedParams(false)
Expand Down

0 comments on commit 17cdf39

Please sign in to comment.