#!/bin/sh set -e if [ ! -e /usr/local/lib/ocaml ]; then if mkdir /usr/local/lib/ocaml 2>/dev/null; then chown root:staff /usr/local/lib/ocaml chmod 2775 /usr/local/lib/ocaml fi fi if [ ! -e /usr/local/lib/ocaml/4.14.1 ]; then if mkdir /usr/local/lib/ocaml/4.14.1 2>/dev/null; then chown root:staff /usr/local/lib/ocaml/4.14.1 chmod 2775 /usr/local/lib/ocaml/4.14.1 fi fi if [ ! -e /usr/local/lib/ocaml/4.14.1/stublibs ]; then if mkdir /usr/local/lib/ocaml/4.14.1/stublibs 2>/dev/null; then chown root:staff /usr/local/lib/ocaml/4.14.1/stublibs chmod 2775 /usr/local/lib/ocaml/4.14.1/stublibs fi fi