#! /bin/sh

PREFIX=$1

## This loop creates directories that don't already exist.
for D in bin lib tmp; do
    test -d $D || mkdir -p $D
    chmod 755 $D
done

# --- end of file ---
