summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2007-02-11 17:19:55 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2007-02-11 17:19:55 +0000
commit2a14f39fdfa80b021227396b22e38ed7c35356df (patch)
treea90a7a5d8b0fd5c2e7804f942ad6b0454f2e1007
parent3ad70b16f1ce8679dc3691dd30bdc0e104317ac3 (diff)
Correctly build glob.dump on non-native archs.debian/8.1.gamma-4
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules6
2 files changed, 11 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index b442402a..51db91a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+coq (8.1~gamma-4) experimental; urgency=low
+
+ * Correctly build glob.dump on non-native archs, closes: #400535.
+
+ -- Samuel Mimram <smimram@debian.org> Sun, 11 Feb 2007 18:02:49 +0100
+
coq (8.1~gamma-3) experimental; urgency=low
* Added next-ia64.dpatch to fix the FTBFS on ia64.
diff --git a/debian/rules b/debian/rules
index 6bdb7e65..c8a416b8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -42,7 +42,11 @@ build-stamp:
else \
$(MAKE) BEST=byte HASCOQIDE=byte check; \
fi
- $(MAKE) glob.dump
+ if [ -e opt-stamp ]; then \
+ $(MAKE) BEST=opt glob.dump; \
+ else \
+ $(MAKE) BEST=byte HASCOQIDE=byte glob.dump; \
+ fi
cp tools/coqdoc/coqdoc.sty doc/stdlib/
$(MAKE) -C doc stdlib/html/index.html
touch build-stamp