From: Julien Cristau Date: Thu, 15 Dec 2005 17:02:02 +0000 (+0000) Subject: Stop building the native compilers on hppa, they are buggy and upstream X-Git-Tag: archive/raspbian/4.08.1-4+rpi1~3^2~686 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8432a2448630433ad5e66a3cb1e41acd46767df7;p=ocaml.git Stop building the native compilers on hppa, they are buggy and upstream considers this port dead (see bug#342704). --- diff --git a/debian/changelog b/debian/changelog index a030a5c3..f382af17 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,12 +3,14 @@ ocaml (3.09.0-4) UNRELEASED; urgency=low [ Julien Cristau ] * debian/rules: the abi-sed rule is phony, we don't want to run configure twice. + * Stop building the native compilers on hppa, they are buggy and upstream + considers this port dead (see bug#342704). [ Samuel Mimram ] * Added for_pack_static.dpatch (from CVS) to correct a bug when linking. * Added myself to uploaders. - -- Samuel Mimram Sun, 11 Dec 2005 19:13:13 +0100 + -- Julien Cristau Thu, 15 Dec 2005 17:55:22 +0100 ocaml (3.09.0-3) unstable; urgency=low diff --git a/debian/control b/debian/control index a61fedb7..65943b72 100644 --- a/debian/control +++ b/debian/control @@ -95,7 +95,7 @@ Description: Runtime system for ocaml bytecode executables you do not require any graphical capilities for your runtime. Package: ocaml-native-compilers -Architecture: alpha amd64 arm hppa hurd-i386 i386 ia64 kfreebsd-i386 powerpc sparc +Architecture: alpha amd64 arm hurd-i386 i386 ia64 kfreebsd-i386 powerpc sparc Depends: ocaml-nox (= ${Source-Version}), ocaml-nox-${F:OCamlABI}, gcc, binutils, ${shlibs:Depends} Provides: ocaml-best-compilers Description: Native code compilers of the ocaml suite (the .opt ones) diff --git a/debian/rules b/debian/rules index e0ae258b..908d826c 100755 --- a/debian/rules +++ b/debian/rules @@ -74,11 +74,13 @@ build-arch-stamp: patch-stamp config-stamp fi $(MAKE) world $(MAKE) bootstrap +ifneq ($(DEB_BUILD_ARCH),hppa) if ! grep -q "ARCH=none" config/Makefile; then \ echo "Building native compilers" && \ $(MAKE) opt opt.opt && \ touch opt-built-stamp; \ fi +endif if [ -x ./ocamlopt ]; then \ $(MAKE) -C debian/ocaml-md5sums opt; \ else \