diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-19 07:09:55 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-19 07:09:55 +0000 |
commit | f7c99a656ae02cadec196f45526020cf7411ebab (patch) | |
tree | 7eae416764550ae5c742ff7fd69731dc18ea527b | |
parent | 879c467407fba78b0adf4fdeee6cd783d1600977 (diff) | |
download | gcc-f7c99a656ae02cadec196f45526020cf7411ebab.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19862 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/mkinstalldirs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gcc/mkinstalldirs b/gcc/mkinstalldirs new file mode 100644 index 00000000000..f427ab4a24b --- /dev/null +++ b/gcc/mkinstalldirs @@ -0,0 +1,40 @@ +#! /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 1998/05/19 07:09:56 drepper 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 |