Skip to content

Commit

Permalink
Use the correct extension_safe copt for extension_safe attribute
Browse files Browse the repository at this point in the history
The previous copt was in error, and was not caught due to only causing warnings to be omitted. Tests are now updated to throw an error in such cases of warning.

RELNOTES: None.
PiperOrigin-RevId: 157150798
  • Loading branch information
c-parsons authored and iirina committed May 26, 2017
1 parent 04c090a commit 1fd27bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class MultiArchSplitTransitionProvider implements SplitTransitionProvider
"Invalid version string \"%s\". Version must be of the form 'x.y' without alphabetic "
+ "characters, such as '4.3'.";

private static final String EXTENSION_COPT = "-application-extension";
private static final String EXTENSION_COPT = "-fapplication-extension";
private static final ImmutableSet<PlatformType> SUPPORTED_PLATFORM_TYPES =
ImmutableSet.of(
PlatformType.IOS, PlatformType.WATCHOS, PlatformType.TVOS, PlatformType.MACOS);
Expand Down

0 comments on commit 1fd27bc

Please sign in to comment.