This is an automated email from the git hooks/post-receive script.

dod pushed a commit to branch master
in repository cme.

commit fb45650eafda605f6846d1c40d47df218ce9c264
Author: Dominique Dumont <d...@debian.org>
Date:   Tue Jan 17 13:41:27 2017 +0100

    fix dh_cme_upgrade insertion..
    
    This is the root cause of lcdproc build failure (#851579): debconf and
    templates files were created *after* dh_install was run. Hence the files
    were not installed and lcdproc installation from scratch failed. Note
    that lcdproc upgrade woeked as usual.
    
    Now dh_cme_upgrade is run before dh_install. dh_install takes care of
    running dh_installdebconf.
---
 debian/dh/cme_upgrade.pm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/dh/cme_upgrade.pm b/debian/dh/cme_upgrade.pm
index eba3a4b..ea19c6e 100644
--- a/debian/dh/cme_upgrade.pm
+++ b/debian/dh/cme_upgrade.pm
@@ -10,8 +10,7 @@ use strict;
 use Debian::Debhelper::Dh_Lib;
 
 # see /usr/share/doc/debhelper/PROGRAMMING.gz
-insert_before("dh_install","dh_installdebconf") ;
-insert_after("dh_installdebconf", "dh_cme_upgrade");
+insert_before("dh_install", "dh_cme_upgrade");
 
 
 1;

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/cme.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to