Codebase list coq / a9a05f09-3bd0-40d2-a077-6b56e9a2974b/main configure
a9a05f09-3bd0-40d2-a077-6b56e9a2974b/main

Tree @a9a05f09-3bd0-40d2-a077-6b56e9a2974b/main (Download .tar.gz)

configure @a9a05f09-3bd0-40d2-a077-6b56e9a2974b/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 "$@"