diff options
| author | Albert Astals Cid <tsdgeos@terra.es> | 2007-10-07 13:48:56 +0000 | 
|---|---|---|
| committer | Albert Astals Cid <tsdgeos@terra.es> | 2007-10-07 13:48:56 +0000 | 
| commit | fc8329f8573fe63c8ea7225b94a1497b57f7c304 (patch) | |
| tree | deaf2039ecbc09a26384b5d5357075987ab7e1a8 | |
| parent | 43fe390dd074582295bcd2a0f023188b01958c5d (diff) | |
| download | extra-cmake-modules-fc8329f8573fe63c8ea7225b94a1497b57f7c304.tar.gz extra-cmake-modules-fc8329f8573fe63c8ea7225b94a1497b57f7c304.tar.bz2 | |
do not depend only on index.docbook but on all docbooks to trigger recompilation
found while working on ktuberling docu
svn path=/trunk/KDE/kdelibs/; revision=722511
| -rw-r--r-- | modules/KDE4Macros.cmake | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index ecbad889..b9eea1f8 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -262,9 +262,10 @@ macro (KDE4_CREATE_HANDBOOK _docbook)        set(_bootstrapOption)     endif (_kdeBootStrapping) +   file(GLOB _docs *.docbook)     add_custom_command(OUTPUT ${_doc}        COMMAND ${KDE4_MEINPROC_EXECUTABLE} --check ${_bootstrapOption} --cache ${_doc} ${_input} -      DEPENDS ${_input} ${_KDE4_MEINPROC_EXECUTABLE_DEP} ${_ssheet} +      DEPENDS ${_docs} ${_KDE4_MEINPROC_EXECUTABLE_DEP} ${_ssheet}     )     add_custom_target(handbook ALL DEPENDS ${_doc}) @@ -299,7 +300,6 @@ macro (KDE4_CREATE_HANDBOOK _docbook)     if(_installDest)        file(GLOB _images *.png) -      file(GLOB _docs *.docbook)        install(FILES ${_docs} ${_images} DESTINATION ${_installDest}/${dirname})        # TODO symlinks on non-unix platforms        if (UNIX) | 
