From 5222f5a7c9da9ff9a99ca931909de9d4c6931548 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 29 Jan 2016 11:28:05 +0100 Subject: [PATCH] Don't override dh_auto_clean to nothing --- debian/changelog | 1 + debian/rules | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 87be0383..5fb207ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,7 @@ ostree (2016.1-1) UNRELEASED; urgency=medium * Add an ostree-tests package, and use it for autopkgtest * Enable systemd helpers, but do not start the early-boot systemd services on installation + * Don't override dh_auto_clean to nothing -- Simon McVittie Wed, 27 Jan 2016 13:04:34 +0100 diff --git a/debian/rules b/debian/rules index 818005fd..1db06d84 100755 --- a/debian/rules +++ b/debian/rules @@ -7,6 +7,7 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed dh $@ --parallel --with=autoreconf,gir,systemd override_dh_auto_clean: + if [ -e Makefile ]; then dh_auto_clean; fi override_dh_autoreconf: env NOCONFIGURE=1 dh_autoreconf ./autogen.sh