summaryrefslogtreecommitdiffstats
path: root/scripts-ada/mkinstalldirs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-20 16:01:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-20 16:01:28 +0000
commit1f657157f3acbb183ec0f6146e82fa87ef598bea (patch)
tree2765ca94bf60688b38039e51d585404e02d3e765 /scripts-ada/mkinstalldirs
parent2002-08-20 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-1f657157f3acbb183ec0f6146e82fa87ef598bea.tar.bz2
2002-08-20 Joel Sherrill <joel@OARcorp.com>
* .cvsignore, ChangeLog, Makefile.am, README, TODO, buildall.in, configure.ac, install-sh, missing, mkbinutilspec.in, mkbspspec.in, mkgdbspec.in, mkgnatnewlibspec.in, mkinstalldirs, mkrpms, mkspec, setup, setup.def, binutils/.cvsignore, binutils/Makefile.am, binutils/binutils.spec.in, gdb/.cvsignore, gdb/Makefile.am, gdb/gdb.spec.in, gnatnewlib/.cvsignore, gnatnewlib/Makefile.am, gnatnewlib/gnatnewlib.spec.in: Per PR238 GNAT support is now included in the main RPM specs which support gcc 3.1 and newer since GNAT is in that source base now.
Diffstat (limited to 'scripts-ada/mkinstalldirs')
-rwxr-xr-xscripts-ada/mkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts-ada/mkinstalldirs b/scripts-ada/mkinstalldirs
deleted file mode 100755
index 6b3b5fc5d4..0000000000
--- a/scripts-ada/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