From 4d9badb29a176d1feb8ae8da287b3e2f2d1afe36 Mon Sep 17 00:00:00 2001 From: Samuel Mimram Date: Thu, 15 Feb 2007 13:02:39 +0000 Subject: Correctly detect the presence of ocamlopt. --- debian/patches/00list | 1 + debian/patches/configure.dpatch | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100755 debian/patches/configure.dpatch (limited to 'debian/patches') diff --git a/debian/patches/00list b/debian/patches/00list index 8c069e14..7f4a29f0 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -2,3 +2,4 @@ coqdoc_stdlib browser makefile no-complexity-test +configure diff --git a/debian/patches/configure.dpatch b/debian/patches/configure.dpatch new file mode 100755 index 00000000..db3ef2a5 --- /dev/null +++ b/debian/patches/configure.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## configure.dpatch by Pierre Letouzey +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Correctly detect whether ocamlopt is present or not. + +@DPATCH@ +diff -urNad coq-8.1+dfsg~/configure coq-8.1+dfsg/configure +--- coq-8.1+dfsg~/configure 2007-02-10 08:32:28.000000000 +0000 ++++ coq-8.1+dfsg/configure 2007-02-15 12:58:56.000000000 +0000 +@@ -340,7 +340,7 @@ + # do we have a native compiler: test of ocamlopt and its version + + if [ "$best_compiler" = "opt" ] ; then +- if test -e `which "$nativecamlc"` ; then ++ if test -e "`which $nativecamlc`" ; then + CAMLOPTVERSION=`"$nativecamlc" -v | sed -n -e 's|.*version* *\(.*\)$|\1|p' ` + if [ "$CAMLOPTVERSION" != "$CAMLVERSION" ] ; then + echo "native and bytecode compilers do not have the same version!"; fi -- cgit v1.2.3