Fix DEB/RPM cpack generation
[alexxy/gromacs.git] / CPackInit.cmake
index 20d2c2369510a415d03d9a2bf2327d70c5fcc946..eba4c45d7a8bc32c1c72d265f8cc94073fc3a76b 100644 (file)
@@ -1,8 +1,10 @@
 #TODO: add check that source doesn't contain any untracked files
-get_filename_component(CMAKE_BINARY_DIR ${CPACK_OUTPUT_CONFIG_FILE} PATH)
-if(CPACK_SOURCE_PACKAGE_FILE_NAME AND NOT EXISTS "${CMAKE_BINARY_DIR}/man/man1/ngmx.1")
-    message(FATAL_ERROR 
-        "To generate correct source package all man pages need to be generated. "
-        "The man pages are automatically build together with the binaries. "
-        "Make sure to build all binaries (e.g. GMX_X11=on).")
+if(CPACK_SOURCE_PACKAGE_FILE_NAME) #building source package
+    get_filename_component(CMAKE_BINARY_DIR ${CPACK_OUTPUT_CONFIG_FILE} PATH)
+    if(NOT EXISTS "${CMAKE_BINARY_DIR}/man/man1/ngmx.1")
+        message(FATAL_ERROR 
+            "To create a complete source package all man pages need to be generated."
+            "The man pages are automatically built together with the binaries. "
+            "Make sure to build all binaries (e.g. GMX_X11=on).")
+    endif()
 endif()