From a980eaccb9f0338f262549f31cc99a23529efd73 Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 7 Mar 2000 16:30:11 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'TAO-1_0_15'. --- mkinstalldirs | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 mkinstalldirs (limited to 'mkinstalldirs') diff --git a/mkinstalldirs b/mkinstalldirs deleted file mode 100755 index 6b3b5fc5d4d..00000000000 --- a/mkinstalldirs +++ /dev/null @@ -1,40 +0,0 @@ -#! /bin/sh -# mkinstalldirs --- make directory hierarchy -# Author: Noah Friedman -# Created: 1993-05-16 -# Public domain - -# $Id$ - -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 -- cgit v1.2.1