summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKinsey Moore <kinsey.moore@oarcorp.com>2022-10-27 16:21:47 -0500
committerJoel Sherrill <joel@rtems.org>2022-11-02 09:28:53 -0500
commit1b1d85bad6cae3459f2b816dfcf4d2c9553f31c8 (patch)
tree08c09385428690e551f6dd4708efc420c2ea2134
parentlwip.py: Remove redundant assignment (diff)
downloadrtems-lwip-1b1d85bad6cae3459f2b816dfcf4d2c9553f31c8.tar.bz2
lwip.py: Remove redundant system includes
These includes are already provided in the build by the pkgconfig (.pc) from the installed BSP.
-rw-r--r--lwip.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lwip.py b/lwip.py
index e6580eb..23ffccf 100644
--- a/lwip.py
+++ b/lwip.py
@@ -166,9 +166,6 @@ def build(bld):
drv_obj_incl = []
drv_obj_incl.extend(drv_incl)
drv_obj_incl.extend(common_includes)
- drv_obj_incl.append(os.path.relpath(
- os.path.join(bld.env.PREFIX, arch_lib_path, 'include')
- ))
bld(features='c',
target='driver_obj',
@@ -203,9 +200,6 @@ def build(bld):
test_app_incl.extend(drv_incl)
test_app_incl.extend(common_includes)
test_app_incl.append('rtemslwip/test/')
- test_app_incl.append(
- os.path.relpath(os.path.join(arch_lib_path, 'include'))
- )
bld.program(features='c',
target='networking01.exe',
source='rtemslwip/test/networking01/sample_app.c',