diff options
author | Allen Winter <winter@kde.org> | 2008-04-14 19:51:24 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2008-04-14 19:51:24 +0000 |
commit | 479eff683c78e06073afcbe008f35ba7eb348068 (patch) | |
tree | 8458bf6bd0d071b6468432eae52689a455258867 /modules/FindFreetype.cmake | |
parent | 5ef94db0b23f14ab98795d6fc950ac3356eab0c0 (diff) | |
download | extra-cmake-modules-479eff683c78e06073afcbe008f35ba7eb348068.tar.gz extra-cmake-modules-479eff683c78e06073afcbe008f35ba7eb348068.tar.bz2 |
remove CACHE STRING, which can cause problems.
per Brad King.
svn path=/trunk/KDE/kdelibs/; revision=797050
Diffstat (limited to 'modules/FindFreetype.cmake')
-rw-r--r-- | modules/FindFreetype.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindFreetype.cmake b/modules/FindFreetype.cmake index 6fd1bb13..6c22bb1b 100644 --- a/modules/FindFreetype.cmake +++ b/modules/FindFreetype.cmake @@ -45,7 +45,7 @@ else (FREETYPE_LIBRARIES AND FREETYPE_INCLUDE_DIR) endforeach(value) endif(FREETYPE_LIBRARIES AND _freetype_pkgconfig_output) - set( FREETYPE_LIBRARIES ${FREETYPE_LIBRARIES} CACHE STRING "The libraries for freetype" ) + set( FREETYPE_LIBRARIES ${FREETYPE_LIBRARIES} ) mark_as_advanced(FREETYPE_LIBRARIES FREETYPE_INCLUDE_DIR) |