diff options
author | crunchy <crunchy> | 2003-04-23 08:34:01 +0000 |
---|---|---|
committer | crunchy <crunchy> | 2003-04-23 08:34:01 +0000 |
commit | 4412ca091e6379def8bc836163c6b580df76619c (patch) | |
tree | 35f529177db9512ad1d195276dc9d818a8e23d87 /mplib/mkinstalldirs | |
parent | 16e3a07e9cdfe050819cc4fdd5061486cb48767d (diff) | |
download | mpiosh-4412ca091e6379def8bc836163c6b580df76619c.tar.gz mpiosh-4412ca091e6379def8bc836163c6b580df76619c.tar.bz2 mpiosh-4412ca091e6379def8bc836163c6b580df76619c.zip |
start restructuring
Diffstat (limited to 'mplib/mkinstalldirs')
-rwxr-xr-x | mplib/mkinstalldirs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mplib/mkinstalldirs b/mplib/mkinstalldirs deleted file mode 100755 index 7aebfdd..0000000 --- a/mplib/mkinstalldirs +++ /dev/null @@ -1,40 +0,0 @@ -#! /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 2003/04/18 14:14:01 germeier 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 |