diff options
author | 2020-11-22 02:10:01 +0900 | |
---|---|---|
committer | 2020-11-23 13:27:31 +0000 | |
commit | 604011e21f44b51f3540711ffe53a16362796ae5 (patch) | |
tree | e15d5c5c7884a10721350cbe932257b00cdcb317 /hal/positioning_hal | |
parent | 17cf21bcf8a2e29d2cbcf0a313474d2a4ee44f5d (diff) |
Fix the path to the directory of the include files
Fix the path to the directory of the include files,
'/usr/agl/include' to follow the standard, '/usr/include/'
and add subsystem name 'basesystem' for agl-basesystem.
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Change-Id: I170f23db7178b79bb1081fde9198cb244a51e64c
Diffstat (limited to 'hal/positioning_hal')
-rwxr-xr-x | hal/positioning_hal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/positioning_hal/Makefile b/hal/positioning_hal/Makefile index 0b5a74d..d0d0a69 100755 --- a/hal/positioning_hal/Makefile +++ b/hal/positioning_hal/Makefile @@ -25,8 +25,8 @@ CXXFLAGS += -I./inc/Common CXXFLAGS += -I./inc/GpsCommon CXXFLAGS += -I./inc/LineSensDrv CXXFLAGS += -I./hal_api/ -CXXFLAGS += -I$(SDKTARGETSYSROOT)/usr/agl/include/ -CXXFLAGS += -include $(SDKTARGETSYSROOT)/usr/agl/include/agl_types_obsoluted.h +CXXFLAGS += -I$(SDKTARGETSYSROOT)/usr/include/basesystem +CXXFLAGS += -include $(SDKTARGETSYSROOT)/usr/include/basesystem/agl_types_obsoluted.h ######### compile options ####################### |