Fix manpage generation
The manpages could end up in a wrong directory.
This commit is contained in:
		@@ -71,7 +71,7 @@ endforeach ()
 | 
				
			|||||||
add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES})
 | 
					add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
foreach (page ${project_MAN_PAGES})
 | 
					foreach (page ${project_MAN_PAGES})
 | 
				
			||||||
	string (REGEX MATCH "\\.([0-9])" manpage_suffix "${page}")
 | 
						string (REGEX MATCH "\\.([0-9])$" manpage_suffix "${page}")
 | 
				
			||||||
	install (FILES "${page}"
 | 
						install (FILES "${page}"
 | 
				
			||||||
		DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
 | 
							DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
 | 
				
			||||||
endforeach ()
 | 
					endforeach ()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user