diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-10-25 10:56:09 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:33 -0800 |
commit | 98a510d68e12751917dba29522c69de9964decf6 (patch) | |
tree | 8d0a62e660f77640ff63c665299d8e5dd518be99 /host/utils/bin | |
parent | 73911aca191d18c0a5ddb946ec618fc91b85f3f1 (diff) | |
download | uhd-98a510d68e12751917dba29522c69de9964decf6.tar.gz uhd-98a510d68e12751917dba29522c69de9964decf6.tar.bz2 uhd-98a510d68e12751917dba29522c69de9964decf6.zip |
rfnoc: image builder: Fix include paths
The -I option was broken in multiple ways:
- Multiple -I options would only keep the last one
- The call to make did not actually append RFNOC_OOT_MAKEFILE_SRCS
Diffstat (limited to 'host/utils/bin')
-rwxr-xr-x | host/utils/bin/rfnoc_image_builder | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/bin/rfnoc_image_builder b/host/utils/bin/rfnoc_image_builder index 731fad0b2..e221787c1 100755 --- a/host/utils/bin/rfnoc_image_builder +++ b/host/utils/bin/rfnoc_image_builder @@ -67,8 +67,8 @@ def setup_parser(): parser.add_argument( "-I", "--include-dir", help="Path directory of the RFNoC Out-of-Tree module", - nargs='+', - default=None) + action='append', default=[] + ) parser.add_argument( "-b", "--grc-blocks", help="Path directory of GRC block descriptions (needed for --grc-config only)", |