Use LOCAL_POST_LINK_CMD to install toolbox symlinks
It's simpler; Also whenever toolbox is updated the symlinks get recreated. Change-Id: I03fb61a5e0f14fd4ed23680dd6db87eed5b46787
This commit is contained in:
parent
a4b846f0d3
commit
7d45be0e4a
1 changed files with 3 additions and 16 deletions
|
|
@ -228,6 +228,9 @@ LOCAL_WHOLE_STATIC_LIBRARIES := $(patsubst %,libtoolbox_%,$(BSD_TOOLS))
|
|||
LOCAL_MODULE := toolbox
|
||||
LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
|
||||
|
||||
# Install the symlinks.
|
||||
LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toolbox $(TARGET_OUT)/bin/$(t);)
|
||||
|
||||
# Including this will define $(intermediates).
|
||||
#
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
|
@ -241,22 +244,6 @@ $(TOOLS_H): $(LOCAL_PATH)/Android.mk
|
|||
$(TOOLS_H):
|
||||
$(transform-generated-source)
|
||||
|
||||
# Make symbolic link launchers for each tool.
|
||||
SYMLINKS := $(addprefix $(TARGET_OUT)/bin/,$(ALL_TOOLS))
|
||||
$(SYMLINKS): TOOLBOX_BINARY := $(LOCAL_MODULE)
|
||||
$(SYMLINKS): $(LOCAL_INSTALLED_MODULE) $(LOCAL_PATH)/Android.mk
|
||||
@echo "Symlink: $@ -> $(TOOLBOX_BINARY)"
|
||||
@mkdir -p $(dir $@)
|
||||
@rm -rf $@
|
||||
$(hide) ln -sf $(TOOLBOX_BINARY) $@
|
||||
|
||||
ALL_DEFAULT_INSTALLED_MODULES += $(SYMLINKS)
|
||||
|
||||
# We need this so that the installed files could be picked up based on the
|
||||
# local module name
|
||||
ALL_MODULES.$(LOCAL_MODULE).INSTALLED := \
|
||||
$(ALL_MODULES.$(LOCAL_MODULE).INSTALLED) $(SYMLINKS)
|
||||
|
||||
|
||||
# We only want 'r' on userdebug and eng builds.
|
||||
include $(CLEAR_VARS)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue