Merge "Address syntax / error case nits"
am: ed6b5177e2
Change-Id: Ia67f090ccc6c22d3c2ed1e25921094c9d2de5910
This commit is contained in:
commit
6ac873c3b9
1 changed files with 4 additions and 4 deletions
|
|
@ -220,10 +220,10 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)
|
||||||
# A symlink can't overwrite a directory and the /system/usr/icu directory once
|
# A symlink can't overwrite a directory and the /system/usr/icu directory once
|
||||||
# existed so the required structure must be created whatever we find.
|
# existed so the required structure must be created whatever we find.
|
||||||
LOCAL_POST_INSTALL_CMD = mkdir -p $(TARGET_OUT)/usr && rm -rf $(TARGET_OUT)/usr/icu
|
LOCAL_POST_INSTALL_CMD = mkdir -p $(TARGET_OUT)/usr && rm -rf $(TARGET_OUT)/usr/icu
|
||||||
LOCAL_POST_INSTALL_CMD += ; ln -sf /apex/com.android.runtime/etc/icu $(TARGET_OUT)/usr/icu
|
LOCAL_POST_INSTALL_CMD += && ln -sf /apex/com.android.runtime/etc/icu $(TARGET_OUT)/usr/icu
|
||||||
|
|
||||||
# TODO(b/124106384): Clean up compat symlinks for ART binaries.
|
# TODO(b/124106384): Clean up compat symlinks for ART binaries.
|
||||||
ART_BINARIES= \
|
ART_BINARIES := \
|
||||||
dalvikvm \
|
dalvikvm \
|
||||||
dalvikvm32 \
|
dalvikvm32 \
|
||||||
dalvikvm64 \
|
dalvikvm64 \
|
||||||
|
|
@ -235,10 +235,10 @@ ART_BINARIES= \
|
||||||
oatdump \
|
oatdump \
|
||||||
profman \
|
profman \
|
||||||
|
|
||||||
LOCAL_POST_INSTALL_CMD += ; mkdir -p $(TARGET_OUT)/bin
|
LOCAL_POST_INSTALL_CMD += && mkdir -p $(TARGET_OUT)/bin
|
||||||
$(foreach b,$(ART_BINARIES), \
|
$(foreach b,$(ART_BINARIES), \
|
||||||
$(eval LOCAL_POST_INSTALL_CMD += \
|
$(eval LOCAL_POST_INSTALL_CMD += \
|
||||||
; ln -sf /apex/com.android.runtime/bin/$(b) $(TARGET_OUT)/bin/$(b)) \
|
&& ln -sf /apex/com.android.runtime/bin/$(b) $(TARGET_OUT)/bin/$(b)) \
|
||||||
)
|
)
|
||||||
|
|
||||||
# End of runtime APEX compatibilty.
|
# End of runtime APEX compatibilty.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue