File: configure

package info (click to toggle)
enumerate 111.08.00-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 308 kB
  • ctags: 389
  • sloc: ml: 6,066; makefile: 55
file content (27 lines) | stat: -rwxr-xr-x 363 bytes parent folder | download | duplicates (93)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

# OASIS_START
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
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