packaging: avoid running bare "make install" in debian/rules stable
authorDenis Laxalde <denis.laxalde@logilab.fr>
Wed, 23 Oct 2019 17:18:57 +0200
branchstable
changeset 43319 11c85873e106
parent 43318 cdf6db1f4faf
child 43320 7b638d25b8e4
packaging: avoid running bare "make install" in debian/rules We change the "override_dh_install" target to "override_dh_auto_install" in debian/rules (see dh_auto_install(1) for details). This is because we do not want "make install" to be run automatically as we need the --install-layout=deb of "setup.py install". Otherwise, files end up in $DESTDIR/usr/local. At the moment, this is not a problem since files installed in debian/tmp (the default location) are not packed into binary packages (because there are debian/mercurial and debian/mercurial-common directories). This is cleaner to avoid running make more than needed.
contrib/packaging/debian/rules
--- a/contrib/packaging/debian/rules	Wed Oct 23 16:35:27 2019 +0200
+++ b/contrib/packaging/debian/rules	Wed Oct 23 17:18:57 2019 +0200
@@ -25,7 +25,7 @@
 	$(MAKE) all
 	$(MAKE) -C contrib/chg all
 
-override_dh_install:
+override_dh_auto_install:
 	python3 setup.py install --root "$(CURDIR)"/debian/mercurial --install-layout=deb
 	# chg
 	make -C contrib/chg \