Tag: debian-rules-uses-special-shell-variable Severity: warning Check: debian/rules Renamed-From: debian-rules-should-not-use-underscore-variable Explanation: The rules file use the make variable $(_). . According to Policy 4.9, 'invoking either of make -f debian/rules <...> or ./debian/rules <args...>' must result in identical behavior'. The $_ variable is an easy way to violate that rule unwittingly. . If the rules file uses $(dir $(_)) to discover the directory containing the source package (for example, in order to implement the get-orig-source target) please replace it with $(dir $(firstword $(MAKEFILE_LIST))). See-Also: debian-policy 4.9, https://stackoverflow.com/a/27628164