Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42b808b1 authored by Yoshisato Yanagisawa's avatar Yoshisato Yanagisawa
Browse files

Make SOONG_JAVAC_WRAPPER use JAVAC_WRAPPER to call javac.

JAVAC_WRAPPER seems not be used when SOONG_JAVAC_WRAPPER is used.
Since JAVAC_WRAPPER just wraps actual javac call, the result must
be the same.

Bug: 67723445
Change-Id: I944f9534587c00ffd1bc79806c534432467ba4a5
parent 367da662
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2234,7 +2234,7 @@ $(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) $(PRIVATE_ANNO_INTERMEDIATES_D
$(hide) mkdir -p $(dir $@)
$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR) $(PRIVATE_ANNO_INTERMEDIATES_DIR)
$(hide) if [ -s $(PRIVATE_JAVA_SOURCE_LIST) ] ; then \
    $(SOONG_JAVAC_WRAPPER) $(1) -encoding UTF-8 \
    $(SOONG_JAVAC_WRAPPER) $(JAVAC_WRAPPER) $(1) -encoding UTF-8 \
    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
    $(addprefix -bootclasspath ,$(strip \
        $(call normalize-path-list,$(PRIVATE_BOOTCLASSPATH)) \