From f4c5a9b8e9d563ec16e65e3dafb97f18e12d7002 Mon Sep 17 00:00:00 2001 From: Riku Nomoto Date: Sun, 3 Jan 2021 03:28:40 +0900 Subject: 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 Change-Id: I272fc8252db17638c70ca81b0a016b90ab3f0c06 --- service/system/interface_unified/Makefile.client | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'service/system/interface_unified') 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 -- cgit 1.2.3-korg