# HG changeset patch # User rubidium # Date 1228070744 0 # Node ID a0fec997d412fa537d43264f6fe7187a20595690 # Parent 4441e16edb5226421d97cb3768383ffd1a01e238 (svn r14645) -Fix [FS#2431]: Debian packaging rules could use a non-existing makefile target when rerunning it with dpkg-buildpackage diff -r 4441e16edb52 -r a0fec997d412 os/debian/rules --- a/os/debian/rules Sat Nov 29 22:40:54 2008 +0000 +++ b/os/debian/rules Sun Nov 30 18:45:44 2008 +0000 @@ -36,7 +36,7 @@ # We check for Makefile presence, because clean is called at the # start of the build process (before configure) where we don't # have a Makefile yet. - [ ! -f Makefile ] || $(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) mrproper dh_clean