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:
parent
ea9ceb343e
commit
b394796763
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user