1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

Don't try to make directories that are guaranteed to already exist.

This commit is contained in:
David J. MacKenzie 1994-11-30 22:13:56 +00:00
parent ea9ceb343e
commit b394796763

View File

@ -1261,11 +1261,9 @@ changequote([, ])dnl
AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \
man/Makefile lwlib/Makefile src/Makefile.in, [
### Make the necessary directories, if they don't exist.
for dir in ./src ./lib-src ./cpp ./oldXMenu ./lwlib ./etc ./man ; do
if test ! -d ${dir}; then
mkdir ${dir}
fi
### Make necessary directories, if they don't exist.
for dir in cpp etc ; do
test -d ${dir} || mkdir ${dir}
done
# Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done