summaryrefslogtreecommitdiff
blob: a5b52176418dbbe68c494eff252b8b53c9eef72b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- a/doc/CMakeLists.txt	2023-09-09 11:10:22.671031619 +0200
+++ b/doc/CMakeLists.txt	2023-09-09 11:17:15.398798825 +0200
@@ -138,7 +138,7 @@
 if (NOT WIN32)
   add_custom_command(
-	OUTPUT "${D}/xca.1.gz"
+	OUTPUT "${D}/xca.1"
-	COMMAND cat "${S}/xca.1.head" "${D}/xca.1.options" "${S}/xca.1.tail" | gzip -n9 > "${D}/xca.1.gz"
+	COMMAND cat "${S}/xca.1.head" "${D}/xca.1.options" "${S}/xca.1.tail" | cat > "${D}/xca.1"
 	DEPENDS "${S}/xca.1.head" "${S}/xca.1.tail"
 		"${D}/xca.1.options"
 	COMMENT "Compiling man page"
@@ -148,9 +148,9 @@
 	COMMAND xcadoc man "${D}/xca.1.options"
 	COMMENT "Generate 'man' commandline documentation"
   )
-  add_custom_target(manpage ALL DEPENDS ${D}/xca.1.gz)
+  add_custom_target(manpage ALL DEPENDS ${D}/xca.1)
   if (NOT APPLE)
-    install(FILES "${D}/xca.1.gz"
+    install(FILES "${D}/xca.1"
         DESTINATION ${CMAKE_INSTALL_MANDIR}/man1
     )
   endif()