From f50c11bdd55725b0519f66e63a5ace734261c1d6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 28 May 2000 18:12:21 +0000 Subject: 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. --- scripts/mkinstalldirs | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 scripts/mkinstalldirs (limited to 'scripts/mkinstalldirs') 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 -# 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 -- cgit v1.2.3