head	1.2;
access;
symbols
	RELENG_3_5_0_RELEASE:1.1.1.1.2.1
	RELENG_3_4_0_RELEASE:1.1.1.1
	RELENG_3_3_0_RELEASE:1.1.1.1
	RELENG_3_2_PAO:1.1.1.1.0.4
	RELENG_3_2_PAO_BP:1.1.1.1
	RELENG_3_2_0_RELEASE:1.1.1.1
	RELENG_3_1_0_RELEASE:1.1.1.1
	RELENG_3:1.1.1.1.0.2
	RELENG_3_BP:1.1.1.1
	gnu_texinfo_3_12:1.1.1.1
	KBERRY:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2000.01.17.10.42.01;	author ru;	state dead;
branches;
next	1.1;

1.1
date	99.01.14.19.34.55;	author markm;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.01.14.19.34.55;	author markm;	state Exp;
branches
	1.1.1.1.2.1;
next	;

1.1.1.1.2.1
date	2000.05.06.18.53.08;	author ru;	state dead;
branches;
next	;


desc
@@


1.2
log
@Remove files not present in last import
@
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.10 1996/05/03 07:37:52 friedman 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
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Upgrade texinfo to the latest-and-greatest.

This has big improvements to the .info file utility support and
much recent OSS requires its features.
@
text
@@


1.1.1.1.2.1
log
@MFC: Upgrade to GNU texinfo 4.0.
@
text
@@

