aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/bin
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-10-25 10:56:09 -0700
committerMartin Braun <martin.braun@ettus.com>2019-11-26 12:21:33 -0800
commit98a510d68e12751917dba29522c69de9964decf6 (patch)
tree8d0a62e660f77640ff63c665299d8e5dd518be99 /host/utils/bin
parent73911aca191d18c0a5ddb946ec618fc91b85f3f1 (diff)
downloaduhd-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-xhost/utils/bin/rfnoc_image_builder4
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)",