summaryrefslogtreecommitdiffstats
path: root/scripts/mkinstalldirs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-28 18:12:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-28 18:12:21 +0000
commitf50c11bdd55725b0519f66e63a5ace734261c1d6 (patch)
tree36f83e9fa378f2bf5ee51cc0e22235cd473fd8e5 /scripts/mkinstalldirs
parentAdded on 4.5 branch (diff)
downloadrtems-f50c11bdd55725b0519f66e63a5ace734261c1d6.tar.bz2
These files were added or deleted on the 4.5 branch as part of
Ralf's patch to split the .spec files into multiple ".add" parts.
Diffstat (limited to 'scripts/mkinstalldirs')
-rwxr-xr-xscripts/mkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts/mkinstalldirs b/scripts/mkinstalldirs
deleted file mode 100755
index 6b3b5fc5d4..0000000000
--- a/scripts/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$
-
-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