head	1.1;
access;
symbols
	gcc-2_8_1-990325:1.1
	gcc-2_8_1-990319:1.1
	gcc-2_8_1-990302:1.1
	gcc_2_8_1-990302:1.1
	gcc_2_8_1-990222:1.1
	gcc-2_8_1-990109:1.1
	gcc-2_8_1-981210:1.1
	gcc-2_8_1-981208:1.1
	gcc-2_8_1-980929:1.1
	gcc_2_8_1-980929:1.1
	gcc-2_8_1-980928:1.1
	gcc-2_8_1-980813:1.1
	gcc-2_8_1-980811:1.1
	make-3-77:1.1
	libc-980720:1.1
	libc-980719:1.1
	libc-980718:1.1
	libc-980717:1.1
	libc-980716:1.1
	libc-980715:1.1
	libc-980714:1.1
	libc-980713:1.1
	libc-980712:1.1
	libc-980711:1.1
	libc-980710:1.1
	libc-980709:1.1
	libc-980708:1.1
	libc-980707:1.1
	libc-980706:1.1
	libc-980705:1.1
	libc-980704:1.1
	libc-980703:1.1
	libc-980702:1.1
	libc-980701:1.1
	libc-980630:1.1
	libc-980629:1.1
	libc-980628:1.1
	libc-980627:1.1
	libc-980626:1.1
	libc-980625:1.1
	libc-980624:1.1
	libc-980623:1.1
	libc-980622:1.1
	libc-980621:1.1
	libc-980620:1.1
	libc-980619:1.1
	libc-980618:1.1
	libc-980617:1.1
	libc-980616:1.1
	libc-980615:1.1
	libc-980614:1.1
	libc-980613:1.1
	libc-980612:1.1
	libc-980611:1.1
	libc-980610:1.1
	libc-980609:1.1
	libc-980608:1.1
	libc-980607:1.1
	libc-980606:1.1
	libc-980605:1.1
	libc-980604:1.1
	libc-980603:1.1
	libc-980602:1.1
	libc-980601:1.1
	libc-980531:1.1
	libc-980530:1.1
	libc-980529:1.1
	libc-980528:1.1
	libc-980527:1.1
	libc-980526:1.1
	libc-980525:1.1
	libc-980524:1.1
	libc-980523:1.1
	libc-980522:1.1
	libc-980521:1.1
	libc-980520:1.1
	libc-980519:1.1;
locks; strict;
comment	@# @;


1.1
date	98.05.19.07.09.56;	author drepper;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Update from main archive.
@
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 1998/05/08 20:55:06 drepper 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" 1>&2

        mkdir "$pathcomp" || lasterr=$?

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

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here
@
