This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository lucene-solr.
commit 0b6d1df74b102e4d6133cf92a37b13222c156b92 Author: Emmanuel Bourg <[email protected]> Date: Fri Oct 31 19:25:00 2014 +0100 Fixed the path to dpkg-statoverride in solr-jetty.postrm (Closes: #767519) --- debian/changelog | 1 + debian/solr-jetty.postrm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7bc519e..dad0afb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ lucene-solr (3.6.2+dfsg-5) UNRELEASED; urgency=medium * Team upload. * Fixed the deployment with Jetty 8 (Closes: #752547) * Enable the symbolic links with Jetty (Closes: #701876) + * Fixed the path to dpkg-statoverride in solr-jetty.postrm (Closes: #767519) -- Emmanuel Bourg <[email protected]> Fri, 31 Oct 2014 12:20:12 +0100 diff --git a/debian/solr-jetty.postrm b/debian/solr-jetty.postrm index 9400cba..bd7e410 100644 --- a/debian/solr-jetty.postrm +++ b/debian/solr-jetty.postrm @@ -6,7 +6,7 @@ case "$1" in remove) # If permissions for the stuff under /var/lib/solr haven't # been removed, remove them now - if [ -x /usr/sbin/dpkg-statoverride ]; then + if [ -x /usr/bin/dpkg-statoverride ]; then if dpkg-statoverride --quiet --list /var/lib/solr > /dev/null ; then dpkg-statoverride --quiet --remove /var/lib/solr fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/lucene-solr.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

