This commit is contained in:
Dave Love 1999-10-06 22:10:16 +00:00
parent 7763df255f
commit 2b6bac153f
2 changed files with 44 additions and 0 deletions

View file

@ -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.

40
mkinstalldirs Executable file
View file

@ -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