* ki7mt <[email protected]>, 2014-10-21, 15:57:
# CMakeLists.txt install target creates all the appropriate dir's override_dh_install: @echo '---------------------------------------------------------------------' @echo ' Overiding: dh_install to NULL' @echo '--------------------------------------------------------------------'
This override seems unnecessary. dh_install is a no-op by default. It won't do anything unless you specifically instruct it what to do (either by providing command line arguments, or by creating *.install files).
# Manpages are build by a Cmake target override_dh_installman: @echo '---------------------------------------------------------------------' @echo ' Overiding: dh_installman to NULL' @echo '---------------------------------------------------------------------'
Similarly, dh_installman is mostly no-op by default.
# Manpages are already compressed override_dh_compress: @echo '---------------------------------------------------------------------' @echo ' Overiding: dh_compress to exclude *.1.gz files' @echo '---------------------------------------------------------------------' dh_compress -X1.gz
dh_compress doesn't touch any *.gz files by default, so this override is superfluous, too.
-- Jakub Wilk -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: https://lists.debian.org/[email protected]

