From: David J. MacKenzie Date: Wed, 30 Nov 1994 22:13:56 +0000 (+0000) Subject: Don't try to make directories that are guaranteed to already exist. X-Git-Tag: emacs-19.34~5757 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b394796763ce806608bc552b48c57416053fe2c1;p=emacs.git Don't try to make directories that are guaranteed to already exist. --- diff --git a/configure.in b/configure.in index 71039d043b1..fa79f7ae868 100644 --- a/configure.in +++ b/configure.in @@ -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