aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ml
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-08-11 09:30:34 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-08-11 09:30:34 +0200
commite154bf3505658b59c1cce53bd3061586bc353449 (patch)
tree83b78cecf6bee290e70af29226a71348324c7d4e /configure.ml
parent2f26c2fd368a10b89273712e3de64bbd83aedc59 (diff)
Use the "md5" command on OpenBSD (bug #5008).
Diffstat (limited to 'configure.ml')
-rw-r--r--configure.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ml b/configure.ml
index 6748da1d8..5b4ab883d 100644
--- a/configure.ml
+++ b/configure.ml
@@ -827,7 +827,8 @@ let strip =
(** * md5sum command *)
let md5sum =
- if arch = "Darwin" || arch = "FreeBSD" then "md5 -q" else "md5sum"
+ if List.mem arch ["Darwin"; "FreeBSD"; "OpenBSD"]
+ then "md5 -q" else "md5sum"
(** * Documentation : do we have latex, hevea, ... *)