mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
27 lines
367 B
Bash
Executable file
27 lines
367 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# OASIS_START
|
|
# DO NOT EDIT (digest: 6f7b8221311e800a7093dc3b793f67ca)
|
|
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
|
|
|
|
make configure CONFIGUREFLAGS="$*"
|
|
# OASIS_STOP
|