summaryrefslogtreecommitdiff
path: root/mkinstalldirs
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2001-03-24 03:27:11 +0000
committerJim Blandy <jimb@codesourcery.com>2001-03-24 03:27:11 +0000
commitdfc8e95159823a44508d492ddb41419f4451499f (patch)
tree71fa09490f0c64e57264b0e1c5ede4362e0b0c2b /mkinstalldirs
parent11f936b109319f3f1ce2cc8a8755bb0c270a6cb4 (diff)
downloadgdb-cvs/jimb_gnu_v3_branch.tar.gz
A single-file branch to help me keep things straight while adaptingjimb_gnu_v3_branchcvs/jimb_gnu_v3_branch
GDB to the GNU V3 C++ ABI. * c-typeprint.c: Commit Dan Berlin's changes.
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-xmkinstalldirs36
1 files changed, 0 insertions, 36 deletions
diff --git a/mkinstalldirs b/mkinstalldirs
deleted file mode 100755
index cc8783edce3..00000000000
--- a/mkinstalldirs
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Last modified: 1994-03-25
-# Public domain
-
-errstatus=0
-
-for file in ${1+"$@"} ; do
- set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- for d in ${1+"$@"} ; do
- pathcomp="$pathcomp$d"
- case "$pathcomp" in
- -* ) pathcomp=./$pathcomp ;;
- esac
-
- if test ! -d "$pathcomp"; then
- echo "mkdir $pathcomp" 1>&2
- mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
- fi
-
- if test ! -d "$pathcomp"; then
- errstatus=$lasterr
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here