[srvx-commits] CVS: services configure.in,1.66,1.67
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-09 06:50:42
|
Update of /cvsroot/srvx/services In directory sc8-pr-cvs1:/tmp/cvs-serv11260 Modified Files: configure.in Log Message: make sure that "src" is a directory before we try to put modules-list.h in it Index: configure.in =================================================================== RCS file: /cvsroot/srvx/services/configure.in,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -r1.66 -r1.67 *** configure.in 10 Nov 2002 02:00:33 -0000 1.66 --- configure.in 9 Jan 2003 06:18:19 -0000 1.67 *************** *** 291,294 **** --- 291,301 ---- ]) + if test -e src ; then + if test ! -d src ; then + AC_MSG_ERROR([src exists but is not a directory; please move it out of the way.]) + fi + else + mkdir src + fi AC_MSG_CHECKING(for extra module files) MODULE_DEFINES="src/modules-list.h" |