You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a issue where both man for 32 and 64 bit version have the same name:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse.1" DESTINATION share/man/man1)
would be nice if:
64 bit get:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse.1" DESTINATION share/man/man1)
-32 bit get:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse32.1" DESTINATION share/man/man1)
The text was updated successfully, but these errors were encountered:
That mean if both versions x86 and x86_64 are builded and used at systemm, that chosen distro package maintainer need to care about adjust and rename man files, bc both will get the same naming of output man files... ? Greetings...
--
There is a issue where both man for 32 and 64 bit version have the same name:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse.1" DESTINATION share/man/man1)
would be nice if:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse.1" DESTINATION share/man/man1)
-32 bit get:
install(FILES "${CMAKE_SOURCE_DIR}/man/apulse32.1" DESTINATION share/man/man1)
The text was updated successfully, but these errors were encountered: