comparison configure.in @ 10098:62d0ba6a531b

Don't try to make directories that are guaranteed to already exist.
author David J. MacKenzie <djm@gnu.org>
date Wed, 30 Nov 1994 22:13:56 +0000
parents ae4ee3bd5cd5
children 030853f9aa93
comparison
equal deleted inserted replaced
10097:429eda63a32c 10098:62d0ba6a531b
1259 changequote([, ])dnl 1259 changequote([, ])dnl
1260 1260
1261 AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \ 1261 AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \
1262 man/Makefile lwlib/Makefile src/Makefile.in, [ 1262 man/Makefile lwlib/Makefile src/Makefile.in, [
1263 1263
1264 ### Make the necessary directories, if they don't exist. 1264 ### Make necessary directories, if they don't exist.
1265 for dir in ./src ./lib-src ./cpp ./oldXMenu ./lwlib ./etc ./man ; do 1265 for dir in cpp etc ; do
1266 if test ! -d ${dir}; then 1266 test -d ${dir} || mkdir ${dir}
1267 mkdir ${dir}
1268 fi
1269 done 1267 done
1270 1268
1271 # Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done 1269 # Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done
1272 # after src/config.h is built, since we rely on that file. 1270 # after src/config.h is built, since we rely on that file.
1273 1271