Initial revision
authorJeff Law <law@gcc.gnu.org>
Tue, 19 May 1998 07:09:55 +0000 (01:09 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 19 May 1998 07:09:55 +0000 (01:09 -0600)
From-SVN: r19862

gcc/mkinstalldirs [new file with mode: 0644]

diff --git a/gcc/mkinstalldirs b/gcc/mkinstalldirs
new file mode 100644 (file)
index 0000000..f427ab4
--- /dev/null
@@ -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