From d3da60f01d2a5e2f627ed558c34eca4ff4fc202b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 30 Nov 2008 18:45:44 +0000 Subject: [PATCH] (svn r14645) -Fix [FS#2431]: Debian packaging rules could use a non-existing makefile target when rerunning it with dpkg-buildpackage --- os/debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/debian/rules b/os/debian/rules index 1ac6c90eff..6bc9868ab2 100755 --- a/os/debian/rules +++ b/os/debian/rules @@ -36,7 +36,7 @@ clean: # 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