diff options
author | Samuel Mimram <smimram@debian.org> | 2007-02-11 17:19:55 +0000 |
---|---|---|
committer | Samuel Mimram <smimram@debian.org> | 2007-02-11 17:19:55 +0000 |
commit | 2a14f39fdfa80b021227396b22e38ed7c35356df (patch) | |
tree | a90a7a5d8b0fd5c2e7804f942ad6b0454f2e1007 /debian/rules | |
parent | 3ad70b16f1ce8679dc3691dd30bdc0e104317ac3 (diff) |
Correctly build glob.dump on non-native archs.debian/8.1.gamma-4
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 5 insertions, 1 deletions
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 |