summaryrefslogtreecommitdiffstats
path: root/contrib/texinfo/util
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>1999-01-15 05:58:28 +0000
committermarkm <markm@FreeBSD.org>1999-01-15 05:58:28 +0000
commitc0887878ad4bc034caf441a9373349a58353ef30 (patch)
tree1eba4cea79a2709507ad4ca9e8c62ac507a9d1b2 /contrib/texinfo/util
parentb75813237273de59002127268f7de4e1886e25fe (diff)
downloadFreeBSD-src-c0887878ad4bc034caf441a9373349a58353ef30.zip
FreeBSD-src-c0887878ad4bc034caf441a9373349a58353ef30.tar.gz
Add a file that I forgot to "cvs add", and remove a lot of stuff that is
no longer a part of texinfo-3.12. Pointed out by: dg (partially)
Diffstat (limited to 'contrib/texinfo/util')
-rwxr-xr-xcontrib/texinfo/util/mkinstalldirs40
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/texinfo/util/mkinstalldirs b/contrib/texinfo/util/mkinstalldirs
deleted file mode 100755
index a01481b..0000000
--- a/contrib/texinfo/util/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: mkinstalldirs,v 1.10 1996/05/03 07:37:52 friedman 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
OpenPOWER on IntegriCloud