diff options
author | Patrick Sisterhen <pscommercial@gmail.com> | 2019-06-17 16:45:51 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-07-17 11:44:47 -0700 |
commit | c0f34ddf82a20605acacaa2dffc93d27f3d9ed3f (patch) | |
tree | a1b259764878b7b12dccc3a67c0a10a1ed0d4024 /mpm | |
parent | 667d23b730c15b4e9e448cb1e5d75efeb2930822 (diff) | |
download | uhd-c0f34ddf82a20605acacaa2dffc93d27f3d9ed3f.tar.gz uhd-c0f34ddf82a20605acacaa2dffc93d27f3d9ed3f.tar.bz2 uhd-c0f34ddf82a20605acacaa2dffc93d27f3d9ed3f.zip |
mpm: cmake: removing unnecessary destination prefix
Removing unnecessary CMAKE_INSTALL_PREFIX to destination for usrp mpm
python dir
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/CMakeLists.txt b/mpm/python/CMakeLists.txt index 3a5b30d4e..5691a67a2 100644 --- a/mpm/python/CMakeLists.txt +++ b/mpm/python/CMakeLists.txt @@ -50,7 +50,7 @@ execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from __future__ import print_function; from distutils import sysconfig; print(sysconfig.get_python_lib(plat_specific=True, prefix=''))" OUTPUT_VARIABLE USRP_MPM_PYTHON_DIR OUTPUT_STRIP_TRAILING_WHITESPACE ) -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build/lib/usrp_mpm DESTINATION ${CMAKE_INSTALL_PREFIX}/${USRP_MPM_PYTHON_DIR}) +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build/lib/usrp_mpm DESTINATION ${USRP_MPM_PYTHON_DIR}) install(PROGRAMS aurora_bist_test.py usrp_update_fs |