mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
a Container module that packs everything; ToWeb module (depends on CamlGI) to expoert values on the web
27 lines
364 B
Bash
Executable file
27 lines
364 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# OASIS_START
|
|
# DO NOT EDIT (digest: 425187ed8bfdbdd207fd76392dd243a7)
|
|
set -e
|
|
|
|
FST=true
|
|
for i in "$@"; do
|
|
if $FST; then
|
|
set --
|
|
FST=false
|
|
fi
|
|
|
|
case $i in
|
|
--*=*)
|
|
ARG=${i%%=*}
|
|
VAL=${i##*=}
|
|
set -- "$@" "$ARG" "$VAL"
|
|
;;
|
|
*)
|
|
set -- "$@" "$i"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
ocaml setup.ml -configure "$@"
|
|
# OASIS_STOP
|