From 305b343964e4f54e05c9ae404c92f98466ce6186 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sun, 12 May 2019 19:26:41 -0500 Subject: [PATCH] Bug 22893: Embed contributors.yaml for debian packages Like history.txt we need to tell some debian/ files to copy contributors.yaml Also pick it for the `make install` process (Makefile.PL) Signed-off-by: Martin Renvoize --- Makefile.PL | 1 + debian/koha-common.docs | 1 + debian/rules | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index ce323ef163..9ab7839f2a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -305,6 +305,7 @@ my $target_map = { './clubs' => 'INTRANET_CGI_DIR', './course_reserves' => 'INTRANET_CGI_DIR', './docs/history.txt' => { target => 'DOC_DIR', trimdir => -1 }, + './docs/contributors.yaml' => { target => 'DOC_DIR', trimdir => -1 }, './offline_circ' => 'INTRANET_CGI_DIR', './etc' => { target => 'KOHA_CONF_DIR', trimdir => -1 }, './etc/zebradb' => { target => 'ZEBRA_CONF_DIR', trimdir => -1 }, diff --git a/debian/koha-common.docs b/debian/koha-common.docs index 6106c24178..4a6a9e8849 100644 --- a/debian/koha-common.docs +++ b/debian/koha-common.docs @@ -1,3 +1,4 @@ debian/docs/LEEME.Debian misc/release_notes/release_notes_3*.txt docs/history.txt +docs/contributors.yaml diff --git a/debian/rules b/debian/rules index 20eb9e207f..3c72f9d1a6 100755 --- a/debian/rules +++ b/debian/rules @@ -45,4 +45,4 @@ override_dh_auto_install: override_dh_compress: # exclude history.txt from compression as about.pl needs it uncompressed - dh_compress --exclude=history.txt + dh_compress --exclude=history.txt --exclude=contributors.yaml -- 2.20.1