diff options
author | David Baudens <baudens@mandriva.com> | 2002-07-31 11:19:26 +0000 |
---|---|---|
committer | David Baudens <baudens@mandriva.com> | 2002-07-31 11:19:26 +0000 |
commit | 600b75c507ec532afd30dca36e816dbd3771024c (patch) | |
tree | 2ed1189c1728f35f48d6e5d758453d6a8ceb8d7e /krootwarning/admin/mkinstalldirs | |
parent | 480bf7346671e1cacb9ce000e4d4e5fc9b794af9 (diff) | |
download | common-data-600b75c507ec532afd30dca36e816dbd3771024c.tar common-data-600b75c507ec532afd30dca36e816dbd3771024c.tar.gz common-data-600b75c507ec532afd30dca36e816dbd3771024c.tar.bz2 common-data-600b75c507ec532afd30dca36e816dbd3771024c.tar.xz common-data-600b75c507ec532afd30dca36e816dbd3771024c.zip |
Remove krootwarning & krozat stuff. Moved in their own modules
Diffstat (limited to 'krootwarning/admin/mkinstalldirs')
-rwxr-xr-x | krootwarning/admin/mkinstalldirs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/krootwarning/admin/mkinstalldirs b/krootwarning/admin/mkinstalldirs deleted file mode 100755 index 6b3b5fc..0000000 --- a/krootwarning/admin/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 |