head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.03.07.22.05.50;	author stanton;	state dead;
branches;
next	1.1;

1.1
date	2000.02.24.20.04.53;	author ericm;	state Exp;
branches;
next	;


desc
@@


1.2
log
@* configure.in:
* configure:
* aclocal.m4:
* Makefile.in: Changed to use shared config subdirectory.  Also
fixed problem on Windows builds where it would fail to identify
the tclsh executable to use.  Simplified configure.in to minimum
number of macros.
@
text
@#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain

# $Id: mkinstalldirs,v 1.1 2000/02/24 20:04:53 ericm Exp $

errstatus=0

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

   pathcomp=
   for d
   do
     pathcomp="$pathcomp$d"
     case "$pathcomp" in
       -* ) pathcomp=./$pathcomp ;;
     esac

     if test ! -d "$pathcomp"; then
        echo "mkdir $pathcomp"

        mkdir "$pathcomp" || lasterr=$?

        if test ! -d "$pathcomp"; then
  	  errstatus=$lasterr
        fi
     fi

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here
@


1.1
log
@Added Makefile.in, configure, etc, etc.
@
text
@d7 1
a7 1
# $Id: mkinstalldirs,v 1.1.1.1 1999/08/04 23:03:40 wart Exp $
@

