head	1.2;
access;
symbols
	RELENG_2_2_8_RELEASE:1.1.1.1.8.1
	RELENG_2_2_7_RELEASE:1.1.1.1.8.1
	RELENG_2_2_6_RELEASE:1.1.1.1.8.1
	RELENG_2_2_5_RELEASE:1.1.1.1.8.1
	RELENG_2_2_2_RELEASE:1.1.1.1.8.1
	RELENG_2_2_1_RELEASE:1.1.1.1
	RELENG_2_2_0_RELEASE:1.1.1.1
	RELENG_2_1_7_RELEASE:1.1.1.1
	RELENG_2_1_6_1_RELEASE:1.1.1.1
	RELENG_2_1_6_RELEASE:1.1.1.1
	RELENG_2_2:1.1.1.1.0.8
	RELENG_2_2_BP:1.1.1.1
	RELENG_2_1_5_RELEASE:1.1.1.1
	RELENG_2_1_0_RELEASE:1.1.1.1
	RELENG_2_1_0:1.1.1.1.0.6
	RELENG_2_1_0_BP:1.1.1.1
	RELENG_2_0_5_RELEASE:1.1.1.1
	RELENG_2_0_5:1.1.1.1.0.4
	RELENG_2_0_5_BP:1.1.1.1
	RELENG_2_0_5_ALPHA:1.1.1.1
	RELEASE_2_0:1.1.1.1
	BETA_2_0:1.1.1.1
	ALPHA_2_0:1.1.1.1.0.2
	texinfo_2_0:1.1.1.1
	GNU:1.1.1;
locks; strict;
comment	@# @;


1.2
date	97.01.11.02.32.12;	author jmacd;	state dead;
branches;
next	1.1;

1.1
date	94.09.13.13.51.32;	author gclarkii;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	94.09.13.13.51.33;	author gclarkii;	state Exp;
branches
	1.1.1.1.8.1;
next	;

1.1.1.1.8.1
date	97.04.11.16.54.06;	author asami;	state dead;
branches;
next	;


desc
@@


1.2
log
@Clearing out the old stuff, its all in contrib now.
@
text
@#!/bin/sh
# Make directory hierarchy. 
# Written by Noah Friedman <friedman@@prep.ai.mit.edu>
# Public domain.

defaultIFS=' 	
'
IFS="${IFS-${defaultIFS}}"

errstatus=0

for file in ${1+"$@@"} ; do 
   oIFS="${IFS}"
   # Some sh's can't handle IFS=/ for some reason.
   IFS='%'
   set - `echo ${file} | sed -e 's@@/@@%@@g' -e 's@@^%@@/@@'`
   IFS="${oIFS}"

   pathcomp=''

   for d in ${1+"$@@"} ; do
     pathcomp="${pathcomp}${d}"

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

     pathcomp="${pathcomp}/"
   done
done

exit $errstatus

# eof
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Import of GNU Info 3.0 in bmake format

@
text
@@


1.1.1.1.8.1
log
@Bring in latest texinfo from -current.  Note src/contrib/texinfo
is already tagged into RELENG_2_2.
@
text
@@
