diff options
author | Antoine Beaupré <anarcat@koumbit.org> | 2015-07-24 15:17:13 -0400 |
---|---|---|
committer | Antoine Beaupré <anarcat@koumbit.org> | 2015-07-24 15:26:07 -0400 |
commit | 674e298fb6ddccbb260eb54dde19432901be0b03 (patch) | |
tree | 51a6168ecb55bbc2eb84aefa8c360e40b73375db | |
parent | 83ed6440de75c17d0c580c02e028cc3e5e1a113a (diff) |
fix broken symlink on README.md (Closes: #791566)
/usr/share/doc/etckeeper/README.md used to point to doc/README.mdwn
which was missing from the package. this patch includes the whole doc/
directory instead.
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 6e319fa..cd12ca5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ etckeeper (1.18.2) UNRELEASED; urgency=medium * Use getent utility instead of perl. (Elan Ruusamäe) * Initial FreeBSD support with pkgng plugin. (William Johansson) + * Fix README.md symlink in package (Sebastian Schmidt, Antoine Beaupré, + closes: #791566) -- Joey Hess <id@joeyh.name> Mon, 01 Jun 2015 09:15:34 -0400 diff --git a/debian/docs b/debian/docs index b43bf86..9de86ed 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1 @@ -README.md +doc/*.mdwn diff --git a/debian/rules b/debian/rules index 6fbf146..603f44e 100755 --- a/debian/rules +++ b/debian/rules @@ -4,3 +4,6 @@ export PYTHON_INSTALL_OPTS=--install-layout=deb %: dh --with python2 $@ + +override_dh_installdocs: + dh_installdocs -X.gitignore |