Skip to content

Commit

Permalink
Merge "Remove hard coding of ascii encoding when compiling SDK stubs"
Browse files Browse the repository at this point in the history
  • Loading branch information
paulduffin authored and Gerrit Code Review committed Sep 8, 2016
2 parents 1dd320e + 961e401 commit 00bc4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build_android_stubs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ $(full_target): $(stub_timestamp) $(framework_res_package)
$(hide) $(ACP) libcore/ojluni/NOTICE $(PRIVATE_CLASS_INTERMEDIATES_DIR)/NOTICES/ojluni-NOTICE
$(hide) find $(PRIVATE_SRC_DIR) -name "*.java" > \
$(PRIVATE_INTERMEDIATES_DIR)/java-source-list
$(hide) $(TARGET_JAVAC) -source 1.8 -target 1.8 -encoding ascii -bootclasspath "" \
$(hide) $(TARGET_JAVAC) -source 1.8 -target 1.8 -bootclasspath "" \
-g -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
\@$(PRIVATE_INTERMEDIATES_DIR)/java-source-list \
|| ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
Expand Down

0 comments on commit 00bc4ac

Please sign in to comment.