Update of /cvsroot/srvx/services
In directory usw-pr-cvs1:/tmp/cvs-serv20587
Modified Files:
autogen.sh
Log Message:
warn if somebody is victimized by brain damaged CVS defaults
Index: autogen.sh
===================================================================
RCS file: /cvsroot/srvx/services/autogen.sh,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** autogen.sh 21 May 2002 03:42:34 -0000 1.11
--- autogen.sh 31 Jul 2002 02:34:26 -0000 1.12
***************
*** 5,6 ****
--- 5,16 ----
automake -a --gnu Makefile rx/Makefile src/Makefile
autoconf
+ if [ -d ./src/srvx ] ; then
+ echo "WARNING: It looks like you still have the obsolete src/srvx directory."
+ echo "Since we try to compile the binary into that place, this will break the"
+ echo "compile. This is probably because you did not \"cvs update\" properly"
+ echo "(i.e. with the -P flag). Since you almost always want to do \"cvs update -P\","
+ echo "we suggest you add a line similar to \"update -P\" to your ~/.cvsrc file."
+ echo "For example:"
+ echo " echo update -P >> ~/.cvsrc"
+ echo "At the very least, \"rm -r src/srvx\" before you try to compile."
+ fi
|