Replace spaces with tabs in a Makefile.

Sorry, I undertested my previous change and these guys somehow sneaked in.
This only affects SANITIZE_TARGET builds.

Change-Id: Id6986d89fa3d4965339f7b6fe973e9db73b380da
This commit is contained in:
Evgenii Stepanov 2015-07-15 16:19:59 -07:00
parent e9774a5227
commit d11c3e5c3a
1 changed files with 4 additions and 4 deletions

View File

@ -90,10 +90,10 @@ define add-linker-symlink
$(eval _from := $(TARGET_OUT)/bin/$(1))
$(eval _to:=$(2))
$(_from): $(LOCAL_MODULE_MAKEFILE)
@echo "Symlink: $$@ -> $(_to)"
@mkdir -p $$(dir $$@)
@rm -rf $$@
$(hide) ln -sf $(_to) $$@
@echo "Symlink: $$@ -> $(_to)"
@mkdir -p $$(dir $$@)
@rm -rf $$@
$(hide) ln -sf $(_to) $$@
ALL_MODULES.linker.INSTALLED += $(_from)
linker: $(_from)
endef