ocaml-containers/configure
Simon Cruanes 8ade96b2f6 moved CCHashtbl to CCFlatHashtbl;
new module CCHashtbl that wraps and extends the standard hashtable
2014-09-03 01:08:04 +02:00

27 lines
367 B
Bash
Executable file

#!/bin/sh
# OASIS_START
# DO NOT EDIT (digest: 82230d61386befb40bc7377608e1f16e)
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