On Mon, Mar 3, 2008 at 18:04:37 -0000, [EMAIL PROTECTED] wrote: > Author: munga-guest > Date: Mon Mar 3 18:04:36 2008 > New Revision: 5283 > > URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=5283 > Log: > fix double compilation problem
can you be more specific? > Modified: > trunk/packages/jocaml/trunk/debian/rules > > Modified: trunk/packages/jocaml/trunk/debian/rules > URL: > http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/jocaml/trunk/debian/rules?rev=5283&op=diff > ============================================================================== > --- trunk/packages/jocaml/trunk/debian/rules (original) > +++ trunk/packages/jocaml/trunk/debian/rules Mon Mar 3 18:04:36 2008 > @@ -53,7 +53,7 @@ > clean: > dh_testdir > dh_testroot > - $(RM) -rf build-indep-stamp build-arch-stamp myocamlbuild_config.ml > _tags > + $(RM) -rf myocamlbuild_config.ml _tags you'll still have to remove the stamp files in clean, so this looks wrong. > $(RM) -f debian/jocaml.install debian/jocaml.dirs > if [ -f Makefile -a -f config/Makefile ]; then \ > $(MAKE) clean; \ > @@ -95,5 +95,5 @@ > > binary-indep: > > -binary: binary-arch binary-indep > -.PHONY: build clean binary-arch binary-indep binary install > +binary: binary-indep binary-arch > +.PHONY: build clean binary-indep binary-arch binary install build-arch > and, other than adding build-arch to .PHONY, this doesn't seem to change anything. can you clarify what this is supposed to fix? Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

