From: <ai...@us...> - 2013-10-17 23:21:38
|
Revision: 12604 http://sourceforge.net/p/plplot/code/12604 Author: airwin Date: 2013-10-17 23:21:35 +0000 (Thu, 17 Oct 2013) Log Message: ----------- Fix build-system bug by removing an attempt to install the PostScript form of our DocBook-generated documentation. That form of our documentation is no longer generated by our build system. Modified Paths: -------------- trunk/doc/docbook/src/CMakeLists.txt Modified: trunk/doc/docbook/src/CMakeLists.txt =================================================================== --- trunk/doc/docbook/src/CMakeLists.txt 2013-10-17 20:33:55 UTC (rev 12603) +++ trunk/doc/docbook/src/CMakeLists.txt 2013-10-17 23:21:35 UTC (rev 12604) @@ -820,7 +820,11 @@ if(BUILD_DVI) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${BASE}.dvi DESTINATION ${DOC_DIR}) endif(BUILD_DVI) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${BASE}.pdf ${CMAKE_CURRENT_BINARY_DIR}/${BASE}.ps.gz DESTINATION ${DOC_DIR}) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${BASE}.pdf DESTINATION ${DOC_DIR}) + if(NOT DOCBOOK_XML_BACKEND) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${BASE}.ps.gz DESTINATION ${DOC_DIR}) + endif(NOT DOCBOOK_XML_BACKEND) + endif(BUILD_PRINT OR PREBUILT_DOC) # Everything below here has to do with the custom target www-install This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |