diff options
author | Otto Kekäläinen <otto@mariadb.org> | 2018-01-12 20:27:22 +0000 |
---|---|---|
committer | Vicențiu-Marian Ciorbaru <cvicentiu@gmail.com> | 2018-01-16 13:48:00 +0200 |
commit | 72768cf188536d2d29ff7e25f273be5981c01997 (patch) | |
tree | 14cf9a1d1666cabfea478da7b61cae03ba6c8ebc /debian | |
parent | b5edb4ca3a39c46e0109cf888aeb6ca54a6fc9a9 (diff) | |
download | mariadb-git-72768cf188536d2d29ff7e25f273be5981c01997.tar.gz |
Deb: Warn if sources contain a file that is not installed anywhere
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 3a9ff27a825..b4ef2e5da6d 100755 --- a/debian/rules +++ b/debian/rules @@ -177,7 +177,11 @@ override_dh_installcron-arch: get-orig-source: uscan --force-download --verbose +# If a file is not supposed to be included anywhere, add it to the not-installed +# file and document the reason. Note that dh_install supports the above mentioned +# white list file only starting from Debian Stretch and Ubuntu Xenial. +# To find more, grep build logs for 'but is not installed to anywhere'. %: - dh $@ --parallel --with dpatch --with systemd + dh $@ --parallel --with dpatch --with systemd --list-missing # vim: ts=8 |