This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit 9a2ab48ba2344ac5315640c6d2439d552aa59752 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 30 23:40:03 2018 +0200 debian/rules: add clean rules for stamps and config.{guess,sub} files. --- debian/changelog | 1 + debian/rules | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 14104ee..09dc851 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,6 +28,7 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium - Add autoconf config.{guess,sub} replacement hack from Debian crossstream. - Add non-parallel stamps/dummy target. + - Add clean rules for stamps and config.{guess,sub} files. * debian/mozconfig: - Remove autoconf flags that should better be handled by debian/rules. * debian/make.mk: diff --git a/debian/rules b/debian/rules index ca298a1..365374d 100755 --- a/debian/rules +++ b/debian/rules @@ -91,9 +91,17 @@ stamps/prepare-configure:: stamps/dummy %: dh $@ --parallel -override_dh_auto_clean: +override_dh_auto_clean:: rm -f mozconfig + rm -rf stamps + debian/rules debian/control TESTDIR= dh_auto_clean + + for dir in $(AUTOCONF_DIRS); do \ + for file in config.guess config.sub; do \ + sed -i '2!b;/^exec "/ d' $$dir/$$file; \ + done; \ + done override_dh_auto_configure: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git