Codebase list coq / 00881e91-0466-43bc-9a84-9934f1cdd71d/main configure
00881e91-0466-43bc-9a84-9934f1cdd71d/main

Tree @00881e91-0466-43bc-9a84-9934f1cdd71d/main (Download .tar.gz)

configure @00881e91-0466-43bc-9a84-9934f1cdd71d/mainraw · history · blame

#!/bin/sh

## This micro-configure shell script is here only to
## launch the real configuration via ocaml
configure=./tools/configure/configure.exe

## Check that dune is available, provide an error message otherwise
if ! command -v dune > /dev/null
then
    1>&2 echo "Dune could not be found, please ensure you have a working OCaml enviroment"
    exit 1
fi

dune exec --root . -- $configure "$@"