diff options
| author | Zoran Jovanovic <zoran.jovanovic@sony.com> | 2018-08-15 18:08:19 +0200 |
|---|---|---|
| committer | Alin Jerpelea <alin.jerpelea@sony.com> | 2018-09-10 13:51:54 +0200 |
| commit | 4423d89c886453dcdf4632ee20e50cfc499c31ce (patch) | |
| tree | e279dca3f7abcdc653eb15b25d13e182549edf40 | |
| parent | a7416d68697ae60f5f5fcd53db5ead7081a06bc6 (diff) | |
Don't use shell in make file
...when there are alternatives. (It's faster and safer.)
Signed-off-by: Zoran Jovanovic <zoran.jovanovic@sony.com>
| -rw-r--r-- | Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ LOCAL_SHARED_LIBRARIES := \ libcutils LOCAL_MODULE := macaddrsetup -ifeq (1,$(filter 1,$(shell echo "$$(( $(PLATFORM_SDK_VERSION) >= 25 ))" ))) +ifneq ($(call math_gt_or_eq, $(PLATFORM_SDK_VERSION), 25),) LOCAL_MODULE_OWNER := sony LOCAL_INIT_RC_64 := vendor/etc/init/macaddrsetup.rc LOCAL_PROPRIETARY_MODULE := true |
