[Pkg-ocaml-maint-commits] r1689 - trunk/packages/cduce/trunk/debian
Thomas Petazzoni
tpetazzo-guest at costa.debian.org
Sun Aug 28 10:15:25 UTC 2005
Author: tpetazzo-guest
Date: 2005-08-28 10:15:24 +0000 (Sun, 28 Aug 2005)
New Revision: 1689
Modified:
trunk/packages/cduce/trunk/debian/rules
Log:
Ignore errors during clean to make compilation with svn-buildpackage work. The same trick is used in camlidl, so I assume it's the correct way to do it.
Modified: trunk/packages/cduce/trunk/debian/rules
===================================================================
--- trunk/packages/cduce/trunk/debian/rules 2005-08-24 20:42:40 UTC (rev 1688)
+++ trunk/packages/cduce/trunk/debian/rules 2005-08-28 10:15:24 UTC (rev 1689)
@@ -39,9 +39,9 @@
rm -f build-stamp
touch Makefile.conf
- $(MAKE) $(MAKE_OPTS) clean
- rm Makefile.conf
- rm -f configure-stamp
+ -$(MAKE) $(MAKE_OPTS) clean
+ -$(RM) Makefile.conf
+ -$(RM) -f configure-stamp
dh_clean
install:
More information about the Pkg-ocaml-maint-commits
mailing list