diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-05-13 14:30:41 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-05-20 12:41:25 -0500 |
commit | e61ca590c91d812b1153c46ae6ad36b4cc7f4fdc (patch) | |
tree | 6c40f2b1b3645562b6e18b1bdd25f49e1c9a2233 /host/utils | |
parent | d7287678358b59993d5cace77ffbd0564ebe7593 (diff) | |
download | uhd-e61ca590c91d812b1153c46ae6ad36b4cc7f4fdc.tar.gz uhd-e61ca590c91d812b1153c46ae6ad36b4cc7f4fdc.tar.bz2 uhd-e61ca590c91d812b1153c46ae6ad36b4cc7f4fdc.zip |
utils: Fix FPGA search in rfnoc_image_builder from fpga-src to fpga
When the FPGA repository was merged back into the UHD repository, this
line was forgotten.
Diffstat (limited to 'host/utils')
-rwxr-xr-x | host/utils/rfnoc_image_builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/rfnoc_image_builder.py b/host/utils/rfnoc_image_builder.py index 47d5060a8..03f9529f9 100755 --- a/host/utils/rfnoc_image_builder.py +++ b/host/utils/rfnoc_image_builder.py @@ -140,7 +140,7 @@ def get_fpga_path(args): if not os.path.isdir(result): logging.info("%s is not a valid directory.", result) result = resolve_path("@FPGA_PATH@", os.path.join( - os.path.dirname(__file__), '..', '..', '..', 'fpga-src')) + os.path.dirname(__file__), '..', '..', '..', 'fpga')) logging.info("Fall back to %s", result) return result |