head	2.0;
access;
symbols
	3_0_1:2.0
	3_0_0:2.0
	3_0-pre6:2.0
	3_0-pre5:2.0
	3_0-pre4:2.0
	beta15:1.1
	beta14:1.1
	beta13:1.1
	beta12:1.1
	beta11:1.1
	beta10:1.1
	3_0-pre3:2.0
	3_0-pre2:2.0
	3_0-pre1:2.0
	beta21:2.0
	beta20:2.0
	beta19:2.0
	beta18:2.0
	beta17:2.0
	beta16:2.0;
locks;
comment	@# @;


2.0
date	96.05.02.22.57.04;	author hzoli;	state Exp;
branches;
next	1.1;

1.1
date	95.03.13.01.15.31;	author coleman;	state Exp;
branches;
next	;


desc
@@


2.0
log
@New maintainer: Zoltn Hidvgi <hzoli@@cs.elte.hu>
@
text
@#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@@prep.ai.mit.edu>
# Created: 1993-05-16
# Last modified: 1994-03-25
# Public domain

errstatus=0

for file in ${1+"$@@"} ; do 
   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
   shift

   pathcomp=
   for d in ${1+"$@@"} ; do
     pathcomp="$pathcomp$d"
     case "$pathcomp" in
       -* ) pathcomp=./$pathcomp ;;
     esac

     if test ! -d "$pathcomp"; then
        echo "mkdir $pathcomp" 1>&2
        mkdir "$pathcomp" || errstatus=$?
     fi

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here
@


1.1
log
@Initial revision
@
text
@@
