r950 - /experimental/ffmpeg/debian/rules

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sat Dec 15 21:07:59 UTC 2007


Author: siretart
Date: Sat Dec 15 21:07:59 2007
New Revision: 950

URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=950
Log:
don't ignore Makefile failures in clean target

Modified:
    experimental/ffmpeg/debian/rules

Modified: experimental/ffmpeg/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/experimental/ffmpeg/debian/rules?rev=950&op=diff
==============================================================================
--- experimental/ffmpeg/debian/rules (original)
+++ experimental/ffmpeg/debian/rules Sat Dec 15 21:07:59 2007
@@ -86,8 +86,8 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp
-	-$(MAKE) -C tests clean
-	-$(MAKE) distclean
+	[ ! -f tests/Makefile ] || $(MAKE) -C tests clean
+	[ ! -f Makefile ] || $(MAKE) distclean
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
 	for d in $(LIBS); do \
 	  rm -f $$d/Makefile.pic $$d/$$d.a.bak $$d-unistalled.pc $$d.pc ; \




More information about the pkg-multimedia-commits mailing list