#!/bin/sh -e rc=0 mkdir -p /opt/steeldump/src mkdir -p /opt/steeldump/pool if ! which lisp >/dev/null; then echo "error: cmucl not found" rc=1 fi if ! which dpkg-scanpackages >/dev/null; then echo "error: dpkg-dev not found" rc=1 fi if ! which mf >/dev/null; then echo "error: tetex not found" rc=1 fi exit $rc