head	1.2;
access;
symbols
	JSERV_1_1_2:1.2
	JSERV_1_1_1:1.2
	JSERV_1_1_1b1:1.2
	JSERV_1_1:1.2
	V1_1b3:1.2
	V1_1b2:1.2
	V1_1b1:1.2
	CONFIG:1.1.0.4
	JSERV1_0:1.1
	JSERV1_0FC1:1.1
	JSERV1_0B5:1.1
	JSERV1_0B4:1.1
	JSERV1_0B3:1.1
	JSERV1_1DEV:1.1.0.2
	JSERV1_0B2:1.1
	JSERV1_0B1:1.1;
locks; strict;
comment	@# @;


1.2
date	99.09.17.01.26.23;	author admin;	state Exp;
branches;
next	1.1;

1.1
date	98.11.24.17.59.34;	author tommy;	state Exp;
branches;
next	;


desc
@@


1.2
log
@using libtool 1.3.3 now.

this should fix a whole heap of problems
@
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.13 1999/01/05 03:18:55 bje 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
@Moved config stuff, removed jserv.properties as per discussions with
Stefano.
@
text
@d7 1
a7 1
# $Id: mkinstalldirs,v 1.1 1998/08/24 19:38:46 tommy Exp $
d25 1
a25 1
        echo "mkdir $pathcomp" 1>&2
@

