diff options
author | Dave Love <fx@gnu.org> | 1999-10-06 22:10:16 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-10-06 22:10:16 +0000 |
commit | 48f9671324f272d3fcf31359a1fb378f3634a2b2 (patch) | |
tree | f126c33ad50d14d927caea80cab6c6f26af274d7 | |
parent | 411179edd6aec07a431a13666b9dde54c80687be (diff) | |
download | emacs-48f9671324f272d3fcf31359a1fb378f3634a2b2.tar.gz |
#
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | mkinstalldirs | 40 |
2 files changed, 44 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 89ed31a19e0..f0295adabbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-10-06 Dave Love <fx@gnu.org> + + * Makefile.in: Add rules for config.status, configure. + 1999-09-07 Gerd Moellmann <gerd@gnu.org> * configure.in (--with-sound): Removed. diff --git a/mkinstalldirs b/mkinstalldirs new file mode 100755 index 00000000000..319086a3a46 --- /dev/null +++ b/mkinstalldirs @@ -0,0 +1,40 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy +# Author: Noah Friedman <friedman@prep.ai.mit.edu> +# Created: 1993-05-16 +# Public domain + +# $Id: mkinstalldirs,v 1.11 1998/05/19 07:05:25 drepper dead $ + +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 |