Mercurial > hg > octave-lyh
view scripts/mkinstalldirs @ 14153:06aa17228706 stable
use gnulib::fopen
* oct-md5.cc (oct_md5_file): Use gnulib::fopen.
* kpse.cc: Don't play #define tricks with fopen.
(fopen): Delete.
(xfopen): Use gnulib::fopen.
* oct-parse.yy (get_help_from_file): Use gnulib::fopen.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 06 Jan 2012 09:41:16 -0500 |
parents | 6929a31e7624 |
children |
line wrap: on
line source
#!/bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman <friedman@gnu.org> # Created: 1993-05-16 # Last modified: Wed Jan 25 09:35:21 1995 # Public domain errstatus=0 dirmode=0755 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" || errstatus=$? echo "chmod $dirmode $pathcomp" 1>&2 chmod $dirmode "$pathcomp" || errstatus=$? fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here