summaryrefslogtreecommitdiffstats
path: root/service/system/interface_unified
diff options
context:
space:
mode:
authorRiku Nomoto <riku_nomoto@mail.toyota.co.jp>2021-01-03 03:28:40 +0900
committerRiku Nomoto <riku_nomoto@mail.toyota.co.jp>2021-01-03 03:28:40 +0900
commitf4c5a9b8e9d563ec16e65e3dafb97f18e12d7002 (patch)
treeadddfde994c98eacd41ce797bf4590ced612f463 /service/system/interface_unified
parent7800524955fb9264c567cb923d8b9369b79e8f2c (diff)
Fixed Makefile target
The install command was being executed with do_compile. Because DESTDIR was not defined, the install command was not executed correctly. Therefore, it was fixed so that the install command is not executed in do_compile. Signed-off-by: Riku Nomoto <riku_nomoto@mail.toyota.co.jp> Change-Id: I272fc8252db17638c70ca81b0a016b90ab3f0c06
Diffstat (limited to 'service/system/interface_unified')
-rwxr-xr-xservice/system/interface_unified/Makefile.client10
1 files changed, 2 insertions, 8 deletions
diff --git a/service/system/interface_unified/Makefile.client b/service/system/interface_unified/Makefile.client
index 4925383..3363f66 100755
--- a/service/system/interface_unified/Makefile.client
+++ b/service/system/interface_unified/Makefile.client
@@ -16,18 +16,12 @@
SUBDIRS := library
-install:install_cfg install_cfg_pram
+include ../system_service.mk
-install_cfg_pram:
+install-data:
install -d -m 775 $(DESTDIR)/etc/basesystem/BS/ss/system_manager/rwdata
install -m 644 -t $(DESTDIR)/etc/basesystem/BS/ss/system_manager/rwdata scfg_pram/gpf_ss_sm_config_data.cfg
-
-install_cfg:
install -d -m 775 $(DESTDIR)/etc/basesystem/BS/ss/power_service/rodata
install -m 644 -t $(DESTDIR)/etc/basesystem/BS/ss/power_service/rodata scfg/gpf_ss_ps_config.cfg
install -d -m 775 $(DESTDIR)/etc/basesystem/BS/ss/logger_service/rodata
install -m 644 -t $(DESTDIR)/etc/basesystem/BS/ss/logger_service/rodata scfg/ss_logger.cfg
-
-include ../system_service.mk
-
-.PHONY:install_cfg install_cfg_pram