diff options
author | Allen Winter <winter@kde.org> | 2008-04-16 20:37:25 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2008-04-16 20:37:25 +0000 |
commit | 9215cdab458b5fdc16343157dacd78ef82245ae1 (patch) | |
tree | 947437e1a494b162eaa70a97954a8163215098b3 /modules/FindAkode.cmake | |
parent | ab0a45fb585c6daa64637e7ecbfea7d2028c4844 (diff) | |
download | extra-cmake-modules-9215cdab458b5fdc16343157dacd78ef82245ae1.tar.gz extra-cmake-modules-9215cdab458b5fdc16343157dacd78ef82245ae1.tar.bz2 |
don't put set variables into the CACHE, per Brad King
svn path=/trunk/KDE/kdelibs/; revision=797757
Diffstat (limited to 'modules/FindAkode.cmake')
-rw-r--r-- | modules/FindAkode.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindAkode.cmake b/modules/FindAkode.cmake index 9e66eb36..9df503cc 100644 --- a/modules/FindAkode.cmake +++ b/modules/FindAkode.cmake @@ -34,8 +34,8 @@ ELSE (AKODE_LIBRARIES AND AKODE_INCLUDE_DIR) ENDIF (AKODE_LIBRARIES AND AKODE_INCLUDE_DIR) # ensure that they are cached - set(AKODE_INCLUDE_DIR ${AKODE_INCLUDE_DIR} CACHE INTERNAL "The akode include path") - set(AKODE_LIBRARIES ${AKODE_LIBRARIES} CACHE INTERNAL "The libraries needed to use libraries") + set(AKODE_INCLUDE_DIR ${AKODE_INCLUDE_DIR}) + set(AKODE_LIBRARIES ${AKODE_LIBRARIES}) ENDIF (AKODECONFIG_EXECUTABLE) IF(AKODE_FOUND) |