diff options
author | Benjamin Barenblat <bbaren@mit.edu> | 2015-03-14 20:26:15 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@mit.edu> | 2015-03-14 20:26:15 -0400 |
commit | b0fe44093b52826831825858d79705f5c6a992f1 (patch) | |
tree | 1871f0d8228c72e5c371722d5448fd93f4da8349 /debian | |
parent | 04b5e97997ff3ab28f56bcdb8cb190f05375ea41 (diff) |
Install files manually, not with 'make install'
Upstream’s installer violates the FHS, and there are only two files to
be installed anyway.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 131c822..b107d60 100755 --- a/debian/rules +++ b/debian/rules @@ -13,6 +13,13 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed override_dh_auto_configure: cp Makefile.proto Makefile +.PHONY: override_dh_auto_install +override_dh_auto_install: + # Upstream's installer violates the FHS, and there are only two files to + # install anyway. Do it manually using secpwgen.install and + # secpwgen.manpages. + /bin/true + .PHONY: override_dh_installdocs override_dh_installdocs: dh_installdocs -XREADME |