aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-10-13 10:12:58 +0200
committerMartin Braun <martin.braun@ettus.com>2014-10-13 10:12:58 +0200
commit0846590bb3596ec5d74f27be4b0d76bb3b064218 (patch)
tree41a347a05c31b75b7c5125b15d905e16221002a2
parent513224c7f02d4639201b2d93eed12a3799604e6e (diff)
downloaduhd-0846590bb3596ec5d74f27be4b0d76bb3b064218.tar.gz
uhd-0846590bb3596ec5d74f27be4b0d76bb3b064218.tar.bz2
uhd-0846590bb3596ec5d74f27be4b0d76bb3b064218.zip
utils: Small fix to uhd_images_downloader, less warnings
-rw-r--r--host/utils/uhd_images_downloader.py.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/host/utils/uhd_images_downloader.py.in b/host/utils/uhd_images_downloader.py.in
index 2e5373d41..bd4df8c9c 100644
--- a/host/utils/uhd_images_downloader.py.in
+++ b/host/utils/uhd_images_downloader.py.in
@@ -30,8 +30,7 @@ from optparse import OptionParser
_DEFAULT_BUFFER_SIZE = 8192
_BASE_DIR_STRUCTURE_PARTS = ["share", "uhd", "images"]
-_BASE_DIR_STRUCTURE = os.path.join(_BASE_DIR_STRUCTURE_PARTS)
-_DEFAULT_INSTALL_PATH = os.path.join("@CMAKE_INSTALL_PREFIX@", *_BASE_DIR_STRUCTURE)
+_DEFAULT_INSTALL_PATH = os.path.join("@CMAKE_INSTALL_PREFIX@", *_BASE_DIR_STRUCTURE_PARTS)
_DEFAULT_BASE_URL = "http://files.ettus.com/binaries/images/"
_AUTOGEN_IMAGES_FILENAME = "@UHD_IMAGES_DOWNLOAD_SRC@"
_AUTOGEN_IMAGES_CHECKSUM = "@UHD_IMAGES_MD5SUM@"