diff options
author | Albert Astals Cid <tsdgeos@terra.es> | 2007-10-04 20:28:18 +0000 |
---|---|---|
committer | Albert Astals Cid <tsdgeos@terra.es> | 2007-10-04 20:28:18 +0000 |
commit | cf18b4ca7c49a50809a199b74e0d6cc681d8efb1 (patch) | |
tree | 1a907bdf59010a2e3925f1cdde74199182e79913 | |
parent | 430e3ca856e28e7bbda4d03dbe2037038c6e6cfa (diff) | |
download | extra-cmake-modules-cf18b4ca7c49a50809a199b74e0d6cc681d8efb1.tar.gz extra-cmake-modules-cf18b4ca7c49a50809a199b74e0d6cc681d8efb1.tar.bz2 |
all docbooks have to be installed, not just index.docbook
svn path=/trunk/KDE/kdelibs/; revision=721224
-rw-r--r-- | modules/KDE4Macros.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index 98e00c7b..525fde55 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -299,7 +299,8 @@ macro (KDE4_CREATE_HANDBOOK _docbook) if(_installDest) file(GLOB _images *.png) - install(FILES ${_doc} ${_input} ${_images} DESTINATION ${_installDest}/${dirname}) + file(GLOB _docs *.docbook) + install(FILES ${_docs} ${_input} ${_images} DESTINATION ${_installDest}/${dirname}) # TODO symlinks on non-unix platforms if (UNIX) # execute some cmake code on make install which creates the symlink |