head	1.2;
access;
symbols
	RELEASE_5_4_0:1.1
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2005.07.11.08.26.19;	author sem;	state dead;
branches;
next	1.1;

1.1
date	2003.09.27.17.25.55;	author erwin;	state Exp;
branches;
next	;


desc
@@


1.2
log
@- Update to latest NetBSD snapshot
- Use tarball instead of set of files
- Pass maintainership to submitter

PR:		ports/83180
Submitted by:	Vsevolod Stakhov <vsevolod@@highsecure.ru>
Approved by:	eik MIA
@
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 2002/12/21 04:06:15 schmonz 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
@- update sources and Makefile to latest NetBSD release
  (usage bug fixed, misc. improvements)
- grab maintainership

PR:		56656
Submitted by:	Oliver Eikemeier <eikemeier@@fillmore-labs.com>
@
text
@@

