summaryrefslogtreecommitdiffstats
path: root/service/native
diff options
context:
space:
mode:
authorRiku Nomoto <riku_nomoto@mail.toyota.co.jp>2020-12-19 20:35:59 +0900
committerRiku Nomoto <riku_nomoto@mail.toyota.co.jp>2020-12-20 16:58:59 +0000
commit2398c899d37acd18ba13304460d3248b3ada3e09 (patch)
tree214f06fb2acd00656d91a6cba48f8f3ee4768e8d /service/native
parent9ad7db2494675c110a7b3a4607ccde3a7e4f6c3c (diff)
Changed to not use SDKTARGETSYSROOT.
Yocto sets the recipe-sysroot directory as the sysroot. Therefore, there is no need to define the path of the recipe-sysroot using SDKTARGETSYSROOT in the recipe. Signed-off-by: Riku Nomoto <riku_nomoto@mail.toyota.co.jp> Change-Id: I9f3c7155a0f9656a916a2d6ba71371a4376b502b
Diffstat (limited to 'service/native')
-rwxr-xr-xservice/native/backup_manager/server/Makefile2
-rwxr-xr-xservice/native/framework_unified/client/NS_XMLConfigeParser/library/src/Makefile2
-rwxr-xr-xservice/native/framework_unified/client/NativeServices/Makefile4
3 files changed, 4 insertions, 4 deletions
diff --git a/service/native/backup_manager/server/Makefile b/service/native/backup_manager/server/Makefile
index 6e1149f..1a49297 100755
--- a/service/native/backup_manager/server/Makefile
+++ b/service/native/backup_manager/server/Makefile
@@ -30,7 +30,7 @@ VPATH += ./src ./include ../client/include/$(COMPONENT_NAME)
######### include paths #############
CPPFLAGS += -I./include
CPPFLAGS += -I../client/include
-CPPFLAGS += -I$(SDKTARGETSYSROOT)/usr/include/libxml2
+CPPFLAGS += -I=/usr/include/libxml2
######### frameworkunifiedlog options #############
CPPFLAGS += -DFRAMEWORKUNIFIEDLOGOPTIONS=0x08 -DFRAMEWORKUNIFIEDLOGAPPZONES=31,30,29,28,27,26,9,8,3
diff --git a/service/native/framework_unified/client/NS_XMLConfigeParser/library/src/Makefile b/service/native/framework_unified/client/NS_XMLConfigeParser/library/src/Makefile
index 9ec700c..8b99c3b 100755
--- a/service/native/framework_unified/client/NS_XMLConfigeParser/library/src/Makefile
+++ b/service/native/framework_unified/client/NS_XMLConfigeParser/library/src/Makefile
@@ -33,7 +33,7 @@ libNS_XMLConfigParser_SRCS = ns_xml_reader.cpp ns_xml_writer.cpp ns_xmlparser.cp
######### add include path #############
-CPPFLAGS += -I$(SDKTARGETSYSROOT)/usr/include/libxml2
+CPPFLAGS += -I=/usr/include/libxml2
CPPFLAGS += -I../../../include
CPPFLAGS += -I../include
CPPFLAGS += -I../../../include
diff --git a/service/native/framework_unified/client/NativeServices/Makefile b/service/native/framework_unified/client/NativeServices/Makefile
index de8de1d..b717adf 100755
--- a/service/native/framework_unified/client/NativeServices/Makefile
+++ b/service/native/framework_unified/client/NativeServices/Makefile
@@ -23,7 +23,7 @@ all:
install-data:install_cfg
install_cfg:
- install -d -m 775 $(SDKTARGETSYSROOT)/etc/basesystem/ns_logger
- install -m 644 -t $(SDKTARGETSYSROOT)/etc/basesystem/ns_logger scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg
+ install -d -m 775 /etc/basesystem/ns_logger
+ install -m 644 -t /etc/basesystem/ns_logger scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg
include ../../../native_service.mk