diff options
author | Riku Nomoto <riku_nomoto@mail.toyota.co.jp> | 2020-12-18 00:38:34 +0900 |
---|---|---|
committer | Riku Nomoto <riku_nomoto@mail.toyota.co.jp> | 2020-12-19 11:20:15 +0000 |
commit | 34d32dbb0cea889f1091b9e73329841dbb578ef9 (patch) | |
tree | 5f4bf34dc5d90afe375d3bf42522b5593c699e20 | |
parent | eea0653077cedf807c8acab32b89b70b4358da85 (diff) |
Changed the path of agl.mk in the Makefile for each service.
Changed the location of agl.mk from sysroot to src folder.
Therefore, the Yocto recipes need to change the S and subpath.
Signed-off-by: Riku Nomoto <riku_nomoto@mail.toyota.co.jp>
Change-Id: If0c6da774faf82237acbeb1f7d33f4dbc2858906
-rwxr-xr-x | hal/can_hal/can_hal.mk | 3 | ||||
-rwxr-xr-x | service/native/native_service.mk | 2 | ||||
-rwxr-xr-x | service/other/other_service.mk | 2 | ||||
-rwxr-xr-x | service/peripheral/peripheral_service.mk | 2 | ||||
-rwxr-xr-x | service/system/system_service.mk | 2 | ||||
-rwxr-xr-x | service/vehicle/vehicle_service.mk | 2 | ||||
-rwxr-xr-x | stub/stub.mk | 3 |
7 files changed, 7 insertions, 9 deletions
diff --git a/hal/can_hal/can_hal.mk b/hal/can_hal/can_hal.mk index 546d6ad..0985743 100755 --- a/hal/can_hal/can_hal.mk +++ b/hal/can_hal/can_hal.mk @@ -35,5 +35,4 @@ COMPONENT_LDLIBS := COMPONENT_LDFLAGS := ############################################################## - -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/service/native/native_service.mk b/service/native/native_service.mk index 74daaf0..3c0fd92 100755 --- a/service/native/native_service.mk +++ b/service/native/native_service.mk @@ -41,4 +41,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/service/other/other_service.mk b/service/other/other_service.mk index 63a03ab..e83aa10 100755 --- a/service/other/other_service.mk +++ b/service/other/other_service.mk @@ -39,4 +39,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/service/peripheral/peripheral_service.mk b/service/peripheral/peripheral_service.mk index 561c241..a573f92 100755 --- a/service/peripheral/peripheral_service.mk +++ b/service/peripheral/peripheral_service.mk @@ -41,4 +41,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/service/system/system_service.mk b/service/system/system_service.mk index c1aa32c..fd33c6d 100755 --- a/service/system/system_service.mk +++ b/service/system/system_service.mk @@ -41,4 +41,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/service/vehicle/vehicle_service.mk b/service/vehicle/vehicle_service.mk index 8e753fb..bf1cebb 100755 --- a/service/vehicle/vehicle_service.mk +++ b/service/vehicle/vehicle_service.mk @@ -39,4 +39,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk +include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk diff --git a/stub/stub.mk b/stub/stub.mk index b938c6d..860f66d 100755 --- a/stub/stub.mk +++ b/stub/stub.mk @@ -38,5 +38,4 @@ COMPONENT_LDFLAGS := ############################################################## -include $(SDKTARGETSYSROOT)/usr/share/basesystem/agl.mk - +include $(CURRENT_DIR)/../agl-basefiles/share/agl.mk |