From: Julien Cristau Date: Fri, 9 Dec 2005 16:46:12 +0000 (+0000) Subject: We don't want to do the ABI substitution on the whole source, only in the debian... X-Git-Tag: archive/raspbian/4.08.1-4+rpi1~3^2~688 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ff9fdb49784f8357e72186cc2d341fde57edc153;p=ocaml.git We don't want to do the ABI substitution on the whole source, only in the debian/ subdir --- diff --git a/debian/changelog b/debian/changelog index 07de0561..2bdf8a4a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ocaml (3.09.0-4) UNRELEASED; urgency=low + + * debian/rules: the abi-sed rule is phony, we don't want to run configure + twice. + + -- Julien Cristau Fri, 9 Dec 2005 17:45:16 +0100 + ocaml (3.09.0-3) unstable; urgency=low * Fix build on non-native arches which was broken by the changes to diff --git a/debian/rules b/debian/rules index ff317199..e0ae258b 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) endif abi-sed: - for t in `find . -name \*.in`; do \ + for t in `find debian/ -name \*.in`; do \ sed -e 's%#OcamlABI#%$(OCAMLABI)%' -e 's%#OcamlMAJOR#%$(OCAMLMAJOR)%' $$t >$${t%.in}; \ done @@ -287,4 +287,4 @@ binary-arch: build-arch install-arch dh_builddeb -s binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch abi-sed