From: Sven Luther Date: Mon, 6 Oct 2003 10:27:19 +0000 (+0000) Subject: Changed debhelper options form -a to -s in debian/rules. X-Git-Tag: archive/raspbian/4.08.1-4+rpi1~3^2~818 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=379f351da0dd106eb7befeddf3522624e2510119;p=ocaml.git Changed debhelper options form -a to -s in debian/rules. Tagged ocaml 3.07-6. --- diff --git a/debian/changelog b/debian/changelog index c4710bbf..78b42fb9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ocaml (3.07-6) unstable; urgency=low + + * Changed from the -a to the -s option in debhelper functions. Fixed FTBFS + in all non-native autobuilders. + + -- Sven Luther Mon, 6 Oct 2003 09:07:42 +0200 + ocaml (3.07-5) unstable; urgency=low * Somehow the objinfo patch forgot to install objinfo, fixed now. Also diff --git a/debian/rules b/debian/rules index e0e4fa20..3b3585d2 100755 --- a/debian/rules +++ b/debian/rules @@ -190,8 +190,8 @@ binary-indep: build-indep install-indep # Build architecture dependant packages using the common target. binary-arch: build-arch install-arch - $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common - dh_shlibdeps -a + $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common + dh_shlibdeps -s if [ ! -e opt-built-stamp ]; then \ dh_gencontrol -pocaml \ -u-VF:BestProvides=",ocaml-best-compilers"; \ @@ -202,8 +202,8 @@ binary-arch: build-arch install-arch fi dh_gencontrol -pocaml-base dh_gencontrol -pocaml-source - dh_md5sums -a - dh_builddeb -a + dh_md5sums -s + dh_builddeb -s binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch