Save and restore autogenerated changelog when debian/rule's clean

target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately


SVN revision: 21711
This commit is contained in:
Horms 2006-04-02 07:38:06 +00:00
parent ec0643f48c
commit d6ff630a1b
1 changed files with 2 additions and 0 deletions

2
debian/rules vendored
View File

@ -34,7 +34,9 @@ clean:
dh_testdir
rm -f build-stamp configure-stamp
-mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
-mv debian/changelog.saved debian/changelog
dh_clean