mkinstalldirs revision 96a3e7182f6ab9eaff6c94fc31a162b59b2827da
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain
# $Id$
for file
do
shift
for d
do
esac
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp"
if test ! -d "$pathcomp"; then
fi
fi
done
done
exit $errstatus
# mkinstalldirs ends here