From: Dave Love Date: Wed, 6 Oct 1999 22:10:16 +0000 (+0000) Subject: # X-Git-Tag: emacs-pretest-21.0.90~6562 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b6bac153f3c6111711e1308dde13db607d15028;p=emacs.git # --- diff --git a/ChangeLog b/ChangeLog index 89ed31a19e0..f0295adabbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-10-06 Dave Love + + * Makefile.in: Add rules for config.status, configure. + 1999-09-07 Gerd Moellmann * 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 +# 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