diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2012-06-14 14:01:50 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-06-15 11:34:00 -0700 |
commit | b90fb61b5ddcba82b0b86ebe79587d594a900eb1 (patch) | |
tree | cac84bb5cdb6fbb8b2b93d78f4fea0c460497853 /host/utils | |
parent | 64e3cd1211b94051576b461682280a5b01b123e0 (diff) | |
download | uhd-b90fb61b5ddcba82b0b86ebe79587d594a900eb1.tar.gz uhd-b90fb61b5ddcba82b0b86ebe79587d594a900eb1.tar.bz2 uhd-b90fb61b5ddcba82b0b86ebe79587d594a900eb1.zip |
utils: if usrp2_recovery.py is only compatible with Linux, it doesn't need to be part of other installs
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt index 8ddab035b..a4ff21eee 100644 --- a/host/utils/CMakeLists.txt +++ b/host/utils/CMakeLists.txt @@ -87,8 +87,14 @@ IF(ENABLE_USRP2) COMPONENT utilities ) ENDIF(WIN32 AND UHD_RELEASE_MODE) + IF(LINUX) + INSTALL(PROGRAMS + usrp2_recovery.py + DESTINATION ${PKG_LIB_DIR}/utils + COMPONENT utilities + ) + ENDIF(LINUX) INSTALL(PROGRAMS - usrp2_recovery.py usrp2_card_burner.py usrp2_card_burner_gui.py usrp_n2xx_net_burner.py |