From 4e4d9707331e3ab82594fb6c81fe477c68d5f4d9 Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Thu, 12 Aug 2021 16:03:51 +0100 Subject: Github #562: Use standard linux multiple path delimiter for PyArmNN includes * Update Readme Change-Id: Iaf9e50d7c13cfd3fa1fd75fc423265288c0c7f32 Signed-off-by: Francis Murtagh --- python/pyarmnn/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/pyarmnn/setup.py') diff --git a/python/pyarmnn/setup.py b/python/pyarmnn/setup.py index 7bc4a47619..44e810d422 100755 --- a/python/pyarmnn/setup.py +++ b/python/pyarmnn/setup.py @@ -129,7 +129,7 @@ def find_includes(armnn_include_env: str = INCLUDE_ENV_NAME): global armnn_include_path armnn_include_path_raw = os.getenv(armnn_include_env) if not armnn_include_path_raw == None: - armnn_include_path = armnn_include_path_raw.split(",") + armnn_include_path = armnn_include_path_raw.split(":") # validate input paths armnn_include_path_result = [] -- cgit v1.2.1